body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #e0f7fa, #b2ebf2);
    margin: 0;
    padding: 0;
}


h1 {
    color: #333;
    text-align: center;
    margin-top: 20px;
}

form {
    text-align: center;
    margin: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
    margin-bottom: 10px;
}


a {
    display: block;
    text-align: center;
    margin: 20px;
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.weather-info, .forecast-info {
    text-align: center;
    margin: 20px;
}

img {
    width: 50px;
    height: 50px;
}

hr {
    margin: 20px 0;
}

.weather-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
    transition: transform 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .weather-card {
        max-width: 100%;
        margin: 10px;
    }
}


