body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #CAEAF6;
}

header {
    background-color: #CAEAF6;
    color: black;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: rgb(73, 86, 97);
    text-decoration: none;
}

main {
    margin: 0;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
}
img#logo {
    height: 240px; /* Adjust the height as needed */
    width: auto; /* This keeps the aspect ratio of the image */
}

