:root {
    --primary-color: #0063D3;
    --primary-dark: #003082;
    --background-color: #FFC917;

    --station-color: #0079D3    ;
    --station-post-color: #005CA0    ;
    --footer-text-color: #0063D3;
}

body {
    font-family: "Comic Neue", cursive;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

h1 {
    font-family: 'Helvetica', cursive, sans-serif;
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

input[type="text"] {
    padding: 10px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    width: 300px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: var(--primary-dark);
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


a:hover {
   color: var(--primary-dark)
}

.station {
    color: var(--station-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;

}

.station-post {
    color: var(--station-post-color);
    font-weight: bold;
}

footer {
    text-align: center;  
    position: fixed;  
    bottom: 0;  
    width: 100%;  
    padding: 20px 0;  
    font-size: 12px; 
    color: var(--footer-text-color);  
}

footer a {
    color: var(--footer-text-color);  
    text-decoration: none; 
    margin: 0 5px;  
}

img {
    width: 300px;
}