body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-container {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    height: 400px;
}

.weather-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.location {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.temperature {
    font-size: 4rem;
    color: #ff9f00;
    font-weight: 500;
    margin-bottom: 20px;
}

.description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.weather-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.footer {
    font-size: 1rem;
    color: #777;
    margin-top: 20px;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.w3schools.com/w3images/snow.jpg');
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}