* {
    margin: 0;
    font-family: Arial;
    box-sizing: border-box; /* Correcting typo from 'border' to 'box-sizing' */
}

header {
    height: 140px;
    width: 100%;
    background-color: white;
}

.navbar {
    height: 100px;
    background-color: white;
    color: white;
    display: flex;
    justify-content: center; /* Centers the content inside the navbar */
    align-items: center;
    width: 100%;
}

.cent {
    display: flex;
    justify-content: space-between; /* This ensures equal spacing between the items */
    align-items: center;
    width: 80%; /* Adjusts the width of the flex container */
}

.itm {
    display: flex;
    align-items: center; /* Centers items vertically */
}

.bar-icon, .search-icon {
  color: maroon;
    font-size: 25px;
}

.bar-icon {
    display: flex;
    color: maroon;
    padding: 10px;
}

.nav-logo {
    background-image: url("imagers/urva@3x\ logo.png");
    background-size: cover;
    height: 100px;
    width: 250px;
    border-radius: 4px;
    
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 15%;
}

.search-icon {
    display: flex;
    justify-content: space-between;
    width: 120px;
    padding: 10px;
}

/** Wallpaper 
.wallpaper {
    background-image: url("wallpaper.urva.JPG");
    background-size: cover;
    height: 450px;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
}
**/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  footer {
    background-color: maroon;
    color: white;
    padding: 20px 10px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-newsletter {
    text-align: center;
    margin: 20px 0;
  }
  
  .footer-newsletter p {
    font-size: 14px;
  }
  
  .footer-newsletter form {
    margin: 10px 0;
  }
  
  .footer-newsletter input {
    padding: 8px;
    border: none;
    border-radius: 4px;
  }
  
  .footer-newsletter button {
    padding: 8px;
    background-color: white;
    color: #f4b4b4;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .footer-newsletter button:hover {
    background-color: #fff5f5;
  }
  
  .social-icons a {
    margin: 0 5px;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
  }
  