/* General reset to remove margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: white;
    margin: 0;
    padding: 0;
    background-color: #647B3A;
}

header {
    background-color: #374B0E;
    color: white;
    padding: 10px 20px;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
  }
  
  .navbar ul {
    list-style-type: none;
    margin: 10;
    padding: 20;
    display: flex;
  }
  
  .navbar ul li {
    margin: 0 15px;
  }
  
  .navbar ul li a {
    color:#ddd;
    text-decoration: none;
    padding: 10px 20px;
  }
  
  li a:hover {
    background-color:#647B3A;
  }


  /* Header (Navigation Bar) */
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the fade-in animation */
.home-intro {
    animation: fadeIn 2s ease-in-out;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
  
  .home-section { 
    background-image: url('DSC03000.JPG');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the image while keeping aspect ratio */
    object-position: center; /* Center the cropped image */
    }
    
  .location {
     background-color: rgb(76, 86, 64, 0.7);
     width: 100% ;
     padding: 20px;
     content: "";
     clear: both;
     display: table;
  }
  
  .jog-img img {
    border-radius: 15%;
    float: left;
    width: 40%;
    padding: 10px;
  }
  
  .map {
    float: left;
    width: 50%;
    padding: 10px;
  }