html {
    scroll-behavior: smooth;
}

body {
    font-family: Baskerville;
    background-color: black;
    box-sizing: border-box;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

h1 {
    color: white;
    font-size: 7vw;
    text-transform: uppercase;
    font-weight: 100;
    margin: 0;
    text-shadow: 2px 2px 4px #000000;
}

h2 {
    font-weight: 400;
    font-style: italic;
    text-align: center;
    font-size: 6vw;
    margin-top: 0.25rem;
    margin-bottom: 0;
    color: #000000;
}

p {
    color: white;
    font-size: 5vw;
    margin-top: 0;
    margin-bottom: 0;
}

a, :visited {
    font-size: 9vw;
    text-decoration: none;
    color: white;
}

a:hover {
    color: #c5a076;
}

button {
    font-family: Baskerville;
    font-size: 3vw;
    text-shadow: 1px 1px 2px #000000;
    border-radius: 0.3125rem;
    color: white;
    background-color: #c5a076;
    border: 0px solid white;
    padding: 0.3125rem 0.5rem;
    box-shadow: 1px 1px 2px #000000
}

table {
    text-transform: uppercase;
    font-weight: 100;
    color: #c5a076;
    font-size: 5vw;
    padding: 0.3125rem;
}

#root {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

@media (min-width: 640px) {
    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 2rem;
    }

    table {
        font-size: 1.5rem;
    }

    button {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    h2 {
        font-size: 2rem;
    }
}