html{
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


body{
    background: #222;
    color: white;
}
h1 {
    font-size: 58px;
    text-align: center;
}
.web{
    position: relative;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 10vw;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    display: inline-block;
    top: 150px;
    background-size: 120% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -ms-background-clip: text;
    -ms-text-fill-color: transparent;
    background-clip: text;
    background-image: linear-gradient(45deg, 
                      #7794ff, 
                      #44107A,
                      #FF1361,
                      #FFF800);
  }
  
p {
    font-size: 58px;
    text-align: center;
}
marquee{
    text-align: center;
    font-size: 58px;
    width: 99%
}

*,
*::after,
*::before{
    margin: 0; 
    padding: 0;
    font-family: inherit;
    box-sizing: inherit;
}

.intro {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    transition: 1s;
}

.intro img {
    top: 150px;
    position: absolute;
    width: 80px;
}

.intro p{
    color: gray;
    font-size: 1.6rem;
    margin-top: 10px;
}

.logo {
    font-size: 2.5rem;
    color: #ffffff;
}

.logo-parts {
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
}

.logo-parts.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo-parts.fade {
    bottom: 250px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}

.content{
    padding: 50px;
    font-size: 2rem;
}
#rc_logo a { 
    color: inherit; 
    text-decoration: none;
    } 
    
    .rc_nav {
      overflow: hidden;
      background-color: #3b3b3b;
      text-align: center;
      z-index: 6;
    }
    
    .rc_nav a {
     display: inline-block;
     margin-right: -4px;  /* inline-block gap fix */
     color: #fff;
     padding: 22px 22px;
     text-decoration: none;
     font-family: Poppins;
     font-size: 18px;
     -webkit-transition: background 0.3s linear;
     -moz-transition: background 0.3s linear;
     -ms-transition: background 0.3s linear;
     -o-transition: background 0.3s linear;
     transition: background 0.3s linear;
     z-index: 9;
    }
    
    .rc_nav a:hover {
      background-color: #4c4c4c;
      color: white;
    }
    
    .rc_nav .icon {
      display: none;
    }
    #rc_logo {
        left: 30px;
        padding: 22px;
        position: absolute;
        color: #fff;
        font-size: 19px;
        font-family: Poppins;
        text-decoration: none;
       }
    
    @media screen and (max-width: 820px) {
      .rc_nav a {display: none;}
      .rc_nav a.icon {
        float: right;
        display: block;
        width: 60px;
      }
    }
    
    @media screen and (max-width: 820px) {
      .rc_nav.responsive {position: relative; top: 73px;}
      .rc_nav.responsive .icon {
        position: fixed;
        right: 0;
        top: 0;
      }
      .rc_nav.responsive a {
        float: none;
        display: block;
        text-align: center;
      }
    
    }


    footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: black;
        height: auto;
        width: 100vw;
        font-family: "Open Sans";
        padding-top: 40px;
        color: #fff;
    }
    
    .jd__end {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .jd__end h3 {
        font-size: 1.8rem;
        font-weight: 400;
        text-transform: capitalize;
        line-height: 3rem;
    }
    
    .jd__end p {
        max-width: 500px;
        margin: 10px auto;
        line-height: 28px;
        font-size: 14px;
    }
    .jd__socials {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem 0 3rem 0;
    }
    
    .jd__socials li {
        margin: 0 10px;
    }
    
    .jd__socials a {
        text-decoration: none;
        color: #fff;
    }
    
    .jd__socials a i {
        font-size: 1.1rem;
        transition: color .4s ease;
    }
    
    .jd__socials a:hover i {
        color: greenyellow;
    }
    
    .jd__footer {
        background: #000;
        width: 100vw;
        padding: 20px 0;
        text-align: center;
    }
    
    .jd__footer p {
        font-size: 14px;
        word-spacing: 2px;
        text-transform: capitalize;
    }
    
    .jd__footer span {
        text-transform: uppercase;
        opacity: .4;
        font-weight: 200;
    }