* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #0f111d;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    background-color: #1d2247;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  
  nav {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  #search_area {
    padding: 1rem 1.5rem;
    width: 80%;
    max-width: 400px;
    border-radius: 25px;
    border: 1px dotted #ffffff;
    border-bottom: 2px dotted #ffffff;
    background-color: transparent;
    color: #fff;
    font-size: 1.1rem;
  }
  
  #search_area::placeholder {
    color: #aaaaaa;
  }
  
  nav form button {
    background-color: #ffffff;
    margin-left: 10px;
    font-size: 1rem;
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    color: #15172a;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  nav form button:hover {
    background-color: #2e3dc8c5;
    color: white;
  }
  
  .weather_container {
    text-align: center;
  }
  
  .temp {
    font-size: 4rem;
    margin-bottom: 0.5rem;
  }
  
  .time_location {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .condition {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
  }
  
  #weather_icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    #search_area {
      width: 100%;
      margin-bottom: 1rem;
    }
  }