body {
    font-family: Times New Roman, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background-color: #FFDEAD;
}

header {
    margin-bottom: 20px;
}

h1 {
    color: #333;
    margin-bottom: 100px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 27px;
}

nav ul li {
    position: relative;
    margin: 7px 0;
}

nav ul ul {
    position: relative;
    min-width: 200px;
    flex-direction: column;
}

nav ul li a {
    text-decoration: none;
    color: #361a07;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}