/* html{
    height: 100%;
} */
body{
    background-image: url("./image/background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}
.container{
    /* background-color: greenyellow; */
    width:1024px;
    min-height: 800px;
    margin-left: auto;
    margin-right: auto;}
    header{
        /* background-color:red ; */
        min-height: 100px;
        text-align: center;
    }
    /* nav{
background-color: blueviolet;
height: 40px;
    } */
   .box1{
    height: 250px;
    text-align: center;
    padding-left: 250px;
    padding-right: 250px;
    padding-top:80px;
        /* background-color: burlywood; */
    }
    .map{
        min-height:400px ;
        /* background-color: darkcyan; */
    }
    footer{
        height: 50px;
        background-color: rgba(0, 0, 0, 0.486);
        text-align: center;
        padding-top: 32px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .h1{
        font-size:35px;       
        color: rgba(255, 255, 255, 0.897);
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        padding-top: 20px;
        margin-bottom: 10px;
    }
    .backbox{
        background-color: rgba(0, 0, 0, 0.486);
        padding-bottom: 5px;
        border-radius: 20px;
    }
    .para{
        font-size: 15px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;    
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    }
    
   .link{
       /* text-decoration: none; */
       font-size: 20px;
       font-weight: 900;
    color: white;
    font-family: Arial, Helvetica, sans-serif;  
   } 

   .link:hover{
       opacity: .8;
   }

   .copyright{
      color: white;
   }

   .copyright:hover{
    opacity: .8;
    cursor: pointer;
}



nav{
    background-color: rgba(2, 2, 2, 0.774);
    min-height: 10px;
    width: 1024px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 40px;
    position: sticky;
    top: 2px;      
}
.navlinks{
    flex: 1;
}
.navlinks ul{
margin-left: 30px;
display: inline;
}
.navlinks ul li{
    list-style: none;
    display: inline-block;
    padding: 0px 25px;

}
.navlinks ul a{
    color: white;
    font-family: Arial, Helvetica, sans-serif; 
    text-decoration: none;
    font-size: 20px;

}

.navlinks ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: #FCE38A;
    display: block;
    margin: auto;
    transition: .3s;
    }
    .navlinks ul li:hover:after{
    width: 100%;
    }

