*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #fff;
}
ul li{
    list-style-type: none;
}



body{
    background: url(./assets/img/bgpic.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.header{
    width: 100%;
    height: 50px;
    margin-top: 25px;
    display: flex;
    object-fit: contain;
}

.header .logo{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 50px;
    height: 50px;
}

.nav{
    width: 80%;
    display: flex;
    justify-content: flex-end;
    margin-right: 100px;
   
}

.nav ul li{
    display: inline-block;
    margin: 15px;
    
}

.nav button{
    background-color: #fff;
    color: black;
    border: 1px solid #000000;
    border-radius: 15px;
    width: 100px;
    padding: 8px;
}

.hero{
    margin-top: 130px;
    text-align: center;
}

.hero h1{
    color:aqua;
    font-family: serif;
    font-size: 80px;
}

.hero p{
    color: #fff;
    margin-top: 20px;
    font-size: larger;
    font-family: monospace;
}

.hero a button{
    background-color: #fff;
    border-radius: 20px;
    color: #000000;
    width: 150px;
    padding: 10px;
    margin-top: 30px;
    border: none;
}

.footor{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footor img{
 margin-top: 50px;
 width: 70px;
 height: 50px;
 margin-left: 300px;
}
.dropdown{
    display: flex;
    margin-left: auto;
    padding-right:  20px;
    
}



.dropdown img {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: none;
}
.footor p{
    color: #fff;
    font-size: x-large;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}



@media screen and (max-width: 1024px) {
    .nav {
        display: none;
    }

    .dropdown img {
        display: flex;
        
    }

    body{
        background: url(./assets/img/bgpic.png);
        background-size: 100% 100%;
        background-size: cover;
        background-size: contain;
    }

   
}

  



