/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 40px 20px;
}

/* Button */
button {
    background: #2a5298;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #1e3c72;
}

/* Link Section */
.links {
    text-align: center;
    padding: 15px 15px; /* Reduce top padding from 40px to 20px */
    margin-top: -30px; /* Moves it up */
}

.link-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.link-card {
    background: white;
    text-decoration: none;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
    transition: 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.link-card h3 {
    margin: 0;
    color: #2a5298;
}
.weather-box {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
    height: 270px;
}

.weather-box img {
    width: 80px;
}
