/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* Header & Footer */
header, footer {
    background-color: #A8DADC;
    color: white;
    text-align: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a, footer a {
    color: #18869f;
    text-decoration: none;
}

header img {
    width: 100px;
    vertical-align: middle;
}

header h1 {
    display: inline;
    font-size: 28px;
    margin-left: 15px;
    vertical-align: middle;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Text shadow */
}  

header .link {
    color: #18869f;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
} 

footer p {
    margin: 10px 0;
}

footer img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 4px; /* Increase space between icon and text */
    margin-left: 4px; /* Move icon further left */
}

footer .contact-info {
    font-size: 16px;
}

footer .attributions {
    font-size: 12px;
    margin-top: 10px;
}

footer .attributions a {
    color: #61dafb;
    text-decoration: none;
}
