body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header{
    color: negative;
    text-align: center;
    padding: 1em 0;
    background-image: url('images/header-bg.webp');
    background-size: cover;
    background-position: center;
}

footer {
    background-color: #2c5f2d;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    background-size: cover;
    background-position: center;
}

h1, h2 {
    color: black;
}

.about, .stations {
    padding: 2em;
    text-align: center;
}

.stations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.station-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    color: #333;
    max-width: 300px;
    text-align: center;
}

.station-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.station-card p {
    padding: 1em;
    font-weight: bold;
}

.station-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    border: 2px solid #2c5f2d;
}
