@font-face {
    font-family: 'ethnocentric';
    src: url('../fonts/ethnocentric rg.otf');
}

@font-face {
    font-family: 'nasalization';
    src: url('../fonts/nasalization-rg.otf');
}

html, body {
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

a {
 color:#001f7d;
}

a:visited {
    color:#bfcfff;
}

#main-wrapper {
    height: 100vh;
    overflow: scroll;
    background: rgb(239,66,250);
    background: linear-gradient(20deg, rgba(239,66,250,1) 20%, rgba(12,248,247,1) 90%);
}


/* hero section */

#hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    position: relative;
    z-index: 2;
}

#background-filter {
    position: absolute;
    height: 100%;
    width: 100%;
    background: url('../images/background\ pattern-small.png');
    background-repeat: repeat;
    opacity: .4;
    z-index:0;
    animation: scrolling 30s linear infinite;
}

#hero .description {
    width: 100%;
    display: flex;
    flex-direction: column;

}



#hero h1 {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 10vw, 3rem);
    color: white;
    text-shadow: 2px 2px 10px #262626;
    text-align: center;
    margin-bottom: 0rem;
}

#hero img {
    width: 100%;
    object-fit: contain;
    object-position: bottom;
    margin-top: 3rem;
}


#hero #vtube-logo {
    padding-top: 4rem;
    width: 100%;

}
/* about */

#about {
    display: flex;
    margin: 3px;
    justify-content: space-evenly;
    padding: 5rem 1rem;
    flex-wrap: wrap;
    border: 2px solid #262626;
}

#about h2 {
    margin: 0;
    font-size: clamp(3rem, 10vw, 5rem);
    width: 100%;
    max-width: 700px;
    text-align:center;

}

#about p {
    width: 100%;
    max-width: 600px;

    font-size: 1.5rem;
}

/* featured guests */

#featured {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}


h2, h1 {
    font-family: 'ethnocentric', sans-serif;
    font-weight: 400;
}

#featured h2 {
    font-size: 1.5rem;
    margin:0;
    text-decoration: underline;
}
h1 {
    font-size: 2.5rem;
    text-align: center;
    color: white;
    padding: 4rem 0;
    text-shadow: 2px 2px 10px #262626;
    margin: 0 auto;
    margin-bottom: 4rem;
    position: relative;
    z-index:2;
}

#featured .logo-wrapper {
    font-size: 2rem;
    padding: 4rem 0;
    margin: 0;
    margin-bottom: 8rem;
    position: relative;
    z-index:2;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: #262626;
    margin: 0;
    color: white;
    text-align: center;
}


.logo-wrapper img {
    width: 100%;
    max-width: 1000px;
}

p {
    font-family: 'nasalization', sans-serif;
    font-weight: 100;
    font-size:1rem;

}


#featured .feat-wrapper {
    display:flex;
    justify-content: space-evenly;
    flex-wrap:wrap;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 8rem auto;
    overflow:visible;
    background-color: white;
    box-shadow: 2px 2px 10px #262626;
}

#featured .feat-wrapper:nth-of-type(odd) {
    flex-direction: row-reverse;

}


.feat-wrapper .info-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 4rem .5rem 10rem .5rem;
 

}
.feat-wrapper div {
    width: 100%;
    max-width: 40rem;
    position: relative;
}
.feat-wrapper .images {
    width: 100%;
    max-width: 500px;
    position: absolute;
    bottom: 0%;
    object-fit: contain;
    transform-origin: bottom;
}



.feat-wrapper p.panel-details {
    background-color: #262626;
    padding: 1rem;
    color: rgba(12,248,247,1);
    margin:0;
}

.feat-wrapper .guest-name {
    font-style: italic;
}

/* meets */

#meets {
    margin-bottom: 8rem;
}

#meets h2 {
    background-color: #262626;
    font-size: 2rem;
    padding: 5rem 0;
    text-align: center;
    position:relative;
    z-index: 2;
    color: white;
    margin-bottom:0;
}

#meets .guest-wrapper {
    background-color: #262626;
    position:relative;
    z-index: 2;
    display: flex;
    flex-wrap:wrap;
    justify-content: space-around;
    padding: 5rem .5rem;
}

.guest-wrapper img {
    width: 100%;
    max-width: 600px;
    margin: .5rem;
    margin-bottom: 5rem;
}

#meets h2 {
    background-color: #262626;
    font-size: 2rem;
    margin:0;
}

/* footer */

#footer {
    background-color: #262626;
    color: white;
    text-align: center;
    padding: 4rem;
    position: relative;
    z-index: 2;
    bottom: 0;
}

#footer p  {
    font-size: 1.2rem; 
}

#footer .footer-icon {
    padding: 0 .5rem;
}



/* keyframes */

@keyframes scrolling {
    from {
        background-position: 0 0;
    } to {
        background-position: 500px -500px;
    }
    
}


/* desktop */


@media screen and (min-width: 1200px) {
    #hero .description {
        max-width: 40rem;
        padding: 1rem 0;
    }
    
    #hero img {
        position:relative;
        max-width: 55rem;
        padding-top: 5rem;
    }
    #featured h1 {
        margin-bottom: 0rem;
        padding-bottom: 0rem;
        font-size: 4rem;
    }
    .feat-wrapper .info-wrapper {
        padding: 2rem;
    }

}