body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #2c2c2c;
    text-align: center;
    flex-direction: column;
    display: flex;
     justify-content: center;
      align-items: center;
}

.weather-card {
   
    
    padding: 0px;
    border-radius: 10px;
  
}

input {
    padding: 10px;
    /* margin-bottom: 10px; */
    width: 80%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #7d45f5;
    margin-top: 15px;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

button:hover {
    background-color: #5f33cc;
}

#weather-info {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    color: white;
    border: 1px solid #555;
}

h2 {
    margin: 0;
    font-size: 24px;
}

p {
    font-size: 16px;
}
.hidden{
    display:none;
}