:root{
    --color-bg: AntiqueWhite;
    background-color: var(--color-bg);
}

body{
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}

a{
    color: Peru;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color: Sienna;
}

#main-title{
    font-family: sans-serif;
    font-size: 4rem;
    font-weight: bold;
    font-stretch: ultra-expanded;
    font-variant: small-caps;
    letter-spacing: 0.3em;
    word-spacing: 1ex;
    color: DarkRed;
    text-align: center;
}

nav{
    width: 100%;
}

nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 1rem;
    gap: 1rem;
    margin: 0rem;
}

nav li{
    padding: 0rem 1rem;
}

nav a{
    text-decoration: none;
    font-size: 1.5rem;
    font-variant: small-caps;
}

nav a:hover{
    background-color: DarkRed;
}