:root {
    --dark-purple: #330036;
    --deep-red: #38182f;
    --steel-blue: #2f394d;
    --lavender: #a88fac;
    --dusty-pink: #9e768f;
}

a:link {
    color: #9e768f;
} /* unvisited link */
a:visited {
    color: #9e768f;
} /* visited link */
a:hover {
    color: green;
} /* mouse over link */
a:active {
    color: blue;
} /* selected link */

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: var(--steel-blue);
    color: white;
}

header {
    background-color: var(--dark-purple);
    color: white;
    padding: 20px;
    text-align: center;
}

header img.logo {
    height: 60px;
}

nav {
    background-color: var(--deep-red);
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: var(--lavender);
}

.banner {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

main {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    text-align: center;
}

footer {
    background-color: var(--dark-purple);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: flex;
    bottom: 0;
    width: 100%;
}

footer a {
    color: var(--dusty-pink);
    text-decoration: none;
}

footer a:hover {
    color: var(--lavender);
}
