@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    background-color: #161616;
}
header{
    position: relative;
    left: 0;
    top: 0;
    width: 1005px;
    height: 80px;
}
header h4{
    position: relative;
    left: 10%;
    bottom: 1rem;
    font-size: 1.6rem;
}
.intro{
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #161616;
    transition: 1s;
}

.logo-header{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff0000;
}
/* span{
    position: relative;
    display: inline-block;
    bottom: -20px;
    opacity: 0;
    background: linear-gradient(to top, #ffffff 50%, #ff0000 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.logo.active{
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.logo.fade{
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s
}

.classLogo.active{
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.classLogo.fade{
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s
}
.classLogo{
    text-align: center;
}
.none{
    display: none;
}