html, body {
    height: 100%;
    font-family: 'Red Hat Display', sans-serif;
    background-color: #111 !important;
    color: #eee;
    cursor: default;
}

.bg-light {
    background-color: #333 !important;
}
  
.bg-white {
    background-color: #000 !important;
}
  
.bg-black {
    background-color: #eee !important;
}

a {
    color:#eee;
}

a:hover {
    color:#ce3625;
}

.bi-circle-half {
    color:#eee;
}

.fixedButton {
    position: fixed;
    bottom: 0px;
    right: 0px; 
    padding: 1.5rem;
}

.moon {
    font-size: 2rem;
}

.icon {
    margin: 0.5rem;
}

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
}

.container-fluid {
    width: auto;
}

.fw-black {
    font-weight: 900;
}

.lead {
    font-size: 1.6rem;
}

.sliding {
    text-decoration: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #ce3625, #ce3625 50%, #eee 50%);
    background-size: 200% 100%;
    background-position: 100%;
    transition: all 0.7s;
  }
  
.sliding:hover {
    background-position: 0% 100%;
}

h1 span {
    background-image: linear-gradient(transparent calc(90%), #ce3625 10px);
    background-size: 0;
    background-repeat: no-repeat;
    display: inline;
    transition: 0.5s ease;
}

h1:hover span {
    background-size: 100%;
}