body {
    background-color: tan;
    color: black;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    font-size: x-large;
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0px 30px;
}

nav ul li a {
    text-decoration: none;
    color: rgb(63, 63, 63);
    font-size: 18px;
    transition: color 0.3s, text-decoration 0.3s;
}

nav ul li a:hover {
    color: black;
    text-decoration: underline;
}
