
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --background-color: #ecf0f1;
    --card-background: #ffffff;
    --text-color: #333333;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
h1 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 30px;
}
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.weather-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.weather-card h2 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.5em;
}
.weather-card p {
    margin: 10px 0;
    font-size: 1.1em;
}
.weather-icon {
    font-size: 3em;
    margin: 10px 0;
}
@media (max-width: 600px) {
    .weather-grid {
        grid-template-columns: 1fr;
    }
}


.webcam-card {
grid-column: 1 / -1; /* Make the webcam card span full width */
}
.webcam-card iframe {
max-width: 100%;
height: auto;
aspect-ratio: 16 / 9;
}

