body {
    background-color: #ddd7cc;
    margin: 0;
    padding: 0px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    z-index: 1000;
    background-color: #6b1d2f;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#logo {
    color: #ddd7cc;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-left: 20px;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    user-select: none;
    white-space: nowrap;
}
#menu-toggle {
    display: none;
}
#nav-menu {
    margin-left: auto;
    margin-right: 20px;
}
#nav-menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    list-style: none;
}
#nav-menu li a {
    color: #ddd7cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#nav-menu li a:hover {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}



.main-content {
    display: none;
}