/* General Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

h1 {
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section, .weather-section, .amazon-ads {
    margin-bottom: 40px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #333;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #333;
    color: #fff;
}

/* Weather Section Styling */
.weather-section {
    text-align: center;
}

.weather-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.weather-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.temperature {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.weather-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.wind {
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

/* Amazon Ads Section */
.amazon-ads {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.amazon-ads h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.amazon-ads img {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.amazon-ads img:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}
