body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #251c0d;
    padding: 1px;
    color: white;
}

header h1 {
    flex-grow: 1;
    text-align: center;
}

#logo img {
    height: 40px;
}

#menu {
    position: relative;
}

#menu-icon {
    height: 30px;
    cursor: pointer;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding-left: 0;
    display: none;
    background-color: #4a90e2;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    width: 300px;
}

nav ul li {
    padding: 5px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 10px;
}

footer {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
