*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans',sans-serif;
}

body{
    height: 100vh;
    background-color: #1b1b1b;
    background-image: url('./images/background.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 100px;
    backdrop-filter: blur(3.25px);
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color:#4bf634;
    font-size: 1rem;
}
a:hover{
    color: #bc7710
}
header{
    position: relative;
    padding: 0 2rem;
}
.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links{   
    display: flex;
    gap: 3rem;
    margin-top: 3vh;
}

.navbar .toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width:300px;
    background: rgba(55, 55, 55, 0.516);
    backdrop-filter: blur(30px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 240px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#hero{
    margin-top: 50vh;
    height: calc(100vh - 600px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#bc7710;
    font-weight: bold;
    font-size: 150%;
    padding-top: 50vh;
    transition:cubic-bezier(0.19, 1, 0.22, 1);
}
section#hero h1{
    margin-top: -110vh;
    color:#ff0000
}
section#hero div#songs{
    margin-top: 10vh;
    color:#ff0000
}
section#hero div#songs div#intro_song a{
    margin-top: 0vh;
    color:#ff0000;
    text-decoration: underline;
}
section#hero div#about_me{
    margin-top: 0vh;
    color:#ff0000
}
section#hero video{
    margin-top: 100px;
    margin-right: 25%;
    margin-left: 25%;
    width: 50%;
    border-radius: 20px;
}
.logo img#logo{
    width:12.5%;
    margin-top: 5vh;
    padding-top: 4vh;
    border-radius: 37.5%;
}
section#hero img{
    width: 25%
}
section#hero img#logo{
    border-radius: 37.5%;
}

@media(max-width:992px ){
    .navbar .links{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu {
        display: block;
    }
    section#hero{
        padding-top: 60vh;
    }
    section#hero video{
        margin-right: 0;
        margin-left: 0;
        border-radius: 0;
        width: 100%;
    }
    section#hero img{
        width: 25%
    }
    .logo img#logo{
    width:18.5%;
    margin-top: 5vh;
    border-radius: 37.5%;
    }
}
@media(max-width: 576px){
    .dropdown_menu{
        left: 2.5%;
        width: 95%;
    }
    section#hero{
        padding-top: 50vh;
    }
    section#hero video{
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        border-radius: 0;
    }
    section#hero img{
        width: 25%
    }
}
