/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
   
}
.images {
    overflow-x: auto;
    white-space: nowrap;
 
}
.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }

.images span img {
    height: 300px;
    width: auto;
    margin-right: 10px; /* Adjust margin as needed */
}
nav ul li a
{
  text-decoration:none;
  color:white;
  
}
/* Basic styling */
body {
    
    background-color: #f9f9f9;
    
    background-image: url(mygif.gif);
    background-size: cover;
    background-repeat: no-repeat;
    
    position: relative;
    z-index: -1;
    
    
}

header {
    background-color: #5d3333;
    color: white;
    text-align: center;
    padding: 20px;
  
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px;
    margin-bottom:5%;
    
}

nav ul li {
    margin-right: 20px;
 
}

main {
    padding: 20px;
    
    
   
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}
.header a.logo {
    display: inline-block;
    margin-right: 20px;
}

/* Adjust logo size if needed */
.header a.logo img {
    height: 40px; /* Set your desired height */
    width: auto; /* Maintain aspect ratio */
}
.images span img
{
    height:300px;
 
    
}

section h2
{
    margin-top: 10%;
   
}
/* Updated CSS */
/* ... Your existing styles ... */

/* Added styles for animation and navbar hover effect */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-header {
    animation: fadeInDown 1s ease-out;
}

.nav-list li {
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.nav-list li a:hover {
    font-size: 18px;
    color: #ffc107; /* Change to your desired hover color */
}

.absolute inset-0 bg-gray-300{
    margin-top: 5%;
}
.location{
    display: flex;
    justify-content: center;
    margin-top: 3%;
    /* border: 2px solid black; */
    padding: 20px;
    
    

  }
  
  .location a
  {
    list-style: none;
    cursor:pointer;
    color:black;
    text-decoration: none;
  }

  .location button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px; /* Increased font size */
    border-radius: 5%;
    margin-bottom: 5vh;
    background-color: rgb(204, 243, 204);
    outline: 0;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

/* Button styles on hover */
.location button:hover {
    background-color: #4CAF50; /* Change to an exciting color */
    transform: scale(1.1); /* Add a scale effect on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

  
  .contain{
    /* border:2px solid black; */
    display: flex;
    justify-content: space-evenly;
    margin-top: 20vh;
    margin-bottom: 5vh;
    
  }
