@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: white;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
}
body{
    background: url('https://images.unsplash.com/photo-1485470733090-0aae1788d5af?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1517&q=80');
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* background: black; */
    height: 92px;
}
div.logo{
    font-size: 22px;
    font-weight: bold;
}

nav ul li{
    display: inline;
}
nav ul li a{
    padding: 0 22px;
}
.get-started{
    /* border: 1px solid red; */
    padding: 9px 14px;
    border-radius: 20px;
    background: rgb(229, 135, 9);
}
main{
    /* background: rgb(99, 96, 226); */
    height: calc(100vh - 92px);
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items: center;
}

div.welcome{
    font-size: 41px;
    font-weight: bolder;
}
div.lorem{
    text-align: center;
}
#checkbtn{
    display: none;
}
#bars{
    margin-right: -80px;
    display: none;
    font-size: 25px;
}

.get-started-drop{
    padding: 9px 14px;
    border-radius: 20px;
    background: rgb(229, 135, 9);
}
div.dropdown-menu{
    position: absolute;
    right: 126px;
    top: 71px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    overflow: hidden;
    display: none;
}
div.dropdown-menu li{
    padding: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.dropdown-menu .get-started-drop{
    width: 100%;
    text-align: center;
}