:root
{
    --beige: #F7F1EC;
    --primary: #e2d464;
    --white: #FFFDF7;
    --black: #101010;
    --darkGray: rgb(30, 30, 30);
    --maxContentWidth: 1200px;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--white);
    background-color: var(--darkGray);
}

main
{
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

a
{
    text-decoration: none;
    color: inherit;
}

.maxContentWidth
{
    width: 100%;
    max-width: var(--maxContentWidth);
    margin: 0 auto;
}