

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: antiquewhite;
}

nav{
    display:flex;
     justify-content: space-around;
     align-items: center;
     min-height: 8vh;
     background-color:#970505;
}

.logo{
    color: antiquewhite;
    text-transform: uppercase;
    letter-spacing:2px;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Sriracha', cursive;
}

.logo a{
    color:antiquewhite;
    text-decoration:none;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30%;
    font-family: 'Sriracha', cursive;
}
.nav-links li{
    list-style: none;
}
.nav-links a{
    color:antiquewhite;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 20px;
}

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width:25px;
    height: 3px;
    background-color: antiquewhite;
    margin: 5px;
    transition: all 0.3s;
}

@media screen and (max-width: 1024px){
    .nav-links{
        width: 40%;
    }
}

@media screen and (max-width: 968px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position:absolute;
        width: 0px;
        height: 92vh;
        top: 8vh;
        background-color:#970505;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(150%);
        transition: transform 0.5s ease-in;
        z-index: 1;
    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
    }

}

.nav-active{
    transform: translateX(50%);
}

@keyframes  navLinkFade{
    from{
        opacity:0;
        transform: translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0px);
    }
}
.toggle  .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle  .line2{
opacity: 0;
}

.toggle  .line3{
    transform: rotate(45deg) translate(-5px, -6px);
}

body {
    background-color:#4049bb;
}

.welcometext{
    text-align: center;
    font-size: 40px;

}

.frontpagecoverart {
    width: 92vh;
    border-radius: 2%;
}

.textinimage {
    position: relative;
    text-align: right;  
    color:antiquewhite;
    font-family: 'Acme', sans-serif;
}

.welcometextV1 {  
    word-wrap: break-word;
    text-align: center;
    position: absolute;
    top: 35vh;
    left: 25vw;
    transform: translate(-50%, -50%);
    font-size: 10vh;
    font-weight:900;
}

.welcometextV2 {
    padding-left: 1px;
    text-align: center;
    position: absolute;
    top: 65vh;
    left: 25vw;
    transform: translate(-50%, -50%);
    font-size: 8vh;
    font-weight: 900;
}