body {
    background-color: black;
    color: blue;
    font-family: Cursive, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* Header and Navigation */
.header-navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: lightgray;
}

header {
    font-size: 24px;
}

.navigation-panel {
    background-color: black; /* Change navigation panel color to white */
    padding: 20px;
}

.navigation-panel ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.navigation-panel ul li {
    margin-right: 20px;
    position: relative;
}

.navigation-panel ul ul {
    position: absolute;
    display: none;
    background-color: black;
    list-style: none;
    padding: 0;
    top: 100%;
    left: 0;
}

.navigation-panel ul li:hover > ul {
    display: block;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    padding: 20px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin: 0 10px;
}

.footer-nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

.footer-nav img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
