
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}

.navbar{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
  position:relative;
  display: flex;
  align-items:center;
  justify-content:center;
  padding: 0 5%;
   
}

nav{
  width: 100%;
  position: absolute;
  top: 0;
  left:0;
  padding: 20px 8%;
  display:flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container{
  display: flex;
  align-items: left;
}

.logo{
  width: 30px;
  margin-left: 10px;
}

.maintext{
  color: antiquewhite;
  font-size: 24px;
}
.ul{
  list-style: none;
  display: flex;
  margin-left: 40px;
 
}

nav ul li a{
  text-decoration: none;
  color: antiquewhite;
  font-size: 17px;
}

.content{
  text-align: left;
}

.content h3{
  font-size: 100px;
  color: antiquewhite;
  font-weight: 400;
}

.back-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
  }

  .card {
    width: 90%;
    max-width: 470px;
    background: linear-gradient(135deg, #dfee0e, #6c6c2d);
    color: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .search input {
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 18px;
  }
  
  .search button {
    border: 0;
    outline: 0;
    background: #ebfffc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .weathericon {
    width: 150px;
    margin-top: 30px;
  }
  
  .weather h1 {
    font-size: 80px;
    font-weight: 500;
  }
  
  .weather h2 {
    font-size: 45px;
    font-weight: 400;
    margin-top: -10px;
  }
  
  .details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
  }
  
  .column {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 30%;
    min-width: 120px;
  }
  
  .column img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  .para {
    font-size: 15px;
  }
  
  /* Responsive adjustment for smaller screens */
  @media screen and (max-width: 600px) {
    .details {
      flex-direction: column;
      align-items: center;
    }
  
    .column {
      width: 100%;
      justify-content: center;
    }
  }
  


