body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('https://source.unsplash.com/1600x900/?sky,clouds');
    background-size: cover;
    background-position: center;
    color: #354c72; /* Soft navy text */
}

label{
    color: goldenrod!important;
}

.container {
    background-color: rgb(8 8 8 / 80%);
    padding: 20px;
    margin: 50px auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(53, 76, 114, 0.2); /* Light shadow with blue tone */
}

h1, h2, p {
    text-align: center;
    margin: 10px 0;
    color: #f6f7f7; /* Light blue for headers */
}

.weather-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

img {
    max-width: 100px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(53, 76, 114, 0.3); /* Light shadow with blue tone */
}

.info {
    text-align: center;
}

.info p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f9fa;
}

.highlight {
    font-weight: bold;
    color: #e9981a; /* Sky blue highlight */
}

.footer {
    text-align: center;
    margin-top: 20px;
}

.footer a {
    text-decoration: none;
    color: #29b6f6;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
    color: #1e88e5; /* Slightly darker blue on hover */
}

/* For the icons */
.weather-icon img {
    background-color:#74a6cb; /* Very light blue background */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(53, 76, 114, 0.3);
    max-width: 100px;
}
.footer p{
    color:orange;
}
