/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.hero-title h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.weather-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.weather-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #444;
}

.weather-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}

.weather-table th, .weather-table td {
    padding: 12px 20px;
    border: 1px solid #ddd;
}

.weather-table th {
    background-color: #333;
    color: white;
    font-size: 18px;
}

.weather-table td {
    font-size: 16px;
    background-color: #fff;
}

.weather-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .weather-table th, .weather-table td {
        font-size: 14px;
        padding: 8px 10px;
    }
}
