main
{
    background-color: rgb(20, 20, 20);
    display: flex;
    flex: auto;
    justify-content: center;
    color: white;
    font: 20px "Saira Semi Condensed", serif;
}

html
{
    overflow-y: scroll; /* forsnutej scroll bar*/
    margin: 0;
}

body
{    
    display: flex;
    flex-direction: column;
}

.termsGrid
{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    height: max-content;
    padding: 20px;
}

h1, h2, h3
{
    text-transform: uppercase;
}

h1
{
    margin-bottom: 0px;
}

.termsTitle
{
    display: flex;
    justify-content: center;
}


@media screen and (max-width: 760px)
{
    .termsUL
    {
        font: 15px "Saira Semi Condensed", serif;
    }

    h3
    {
        font: 16px "Saira Semi Condensed", serif;
    }

    h2
    {
        font: 20px "Saira Semi Condensed", serif;
    }

    h1
    {
        font: 23px "Saira Semi Condensed", serif;
    }
}