*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

#container{
    width: 100%;
    padding: 40px 75px 0px 75px;
    font-family: sans-serif;
    position: absolute;
    color: white;
}

#navigator{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
ul{
    text-align: center;
}
ul li{
    list-style-type: none;
    display: inline-block;
    padding: 20px;
    padding-top: 0px;
}
ul li a{
    text-decoration: none;
    color: white;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

#navigator a {
    position: relative;
  }
  
#navigator a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid transparent;
    transition: 1s ease-in-out;
  }
  
#navigator a:hover::after {
    border-bottom-color: #fff;
  }



#navigator h2{
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#yeah{
    margin-top: 150px;
    padding: 10px;
    width: 600px;
}
#yeah h2{
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
#yeah h3{
    font-size: 35px;
    margin-top: -15px;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
#yeah p{
    margin-bottom: 25px;
}
#yeah a{
    display: inline-block;
    text-decoration: none;
    color: #000000;
    background-color: white;
    padding: 10px 20px;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s;
}

#yeah a:hover{
    letter-spacing: 6px;
}

#socials{
    padding: 10px;
    display: flex;
    margin-top: 125px;
    margin-bottom: 10px;
}
#socials div{
    margin-right: 15px;
}
#socials div{
    filter: brightness(5);
    transition: 0.5s;
}
#socials div:hover{
    transform: translateY(-15px);
}

video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
#overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-color: #03a9f4;
    mix-blend-mode: overlay;
}

/* MEDIA QUERY*/
@media only screen and (max-width:600px){
    #container{
        padding: 30px;
    }
    #navigator li.lol{
        display: none;
    }
    #navigator li.book a{
        background-color: #03a9f4;
        margin-bottom: 10px;
    }
    
    #navigator a::after{
        display: none;
    }
    #navigator a:hover::after{
        display: none;
    }

    #navigator h2{
        background-color: #03a9f4;
        padding: 10px;
    }
    #yeah{
        width: 300px;
    }
    #yeah h2{
        font-size: 20px;
    }
    #yeah h3{
        font-size: 18px;
        margin-top: 0px;
    }
    #yeah p{
        font-size: 14px;
        line-height: 18px;
    }
    #yeah a{
        font-size: 10px;
    }
    #socials{
        padding: 15px;
    }
    #socials div{
        transform: scale(0.7);
    }
    #socials div:hover{
        transform: scale(0.7) translateY(-15px);
    }


}

@media only screen and (max-width:980px){
    #container{
        padding: 30px;
    }
    #navigator li.lol{
        display: none;
    }
    #navigator li.book a{
        background-color: #03a9f4;
        margin-bottom: 10px;
    }
    
    #navigator a::after{
        display: none;
    }
    #navigator a:hover::after{
        display: none;
    }

    #navigator h2{
        background-color: #03a9f4;
        padding: 10px;
    }
    #yeah h2{
        font-size: 30px;
    }
    #yeah h3{
        font-size: 25px;
        margin-top: 0px;
    }
    #yeah p{
        font-size: 16px;
        line-height: 18px;
    }
    #yeah a{
        font-size: 10px;
    }
    #socials{
        padding: 15px;
    }


}

