
:root{
    --primary: #707070;
    --secondary: #d41414;
}

footer {
    position: relative;
}

.cover {
    display: none;
}

.legalContent {
    margin: auto;
    margin-top: 10vh;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 85%;
}

.legality {
    margin: auto;
    height: 100%;
    width: 80%;
    overflow-wrap: break-word;
}

.link-red {
    color: rgb(0, 0, 0);
    font-style: italic;
}

.contentBox {
    width: 100%;
    margin-top: 4vh;
    margin-bottom: 5vh;
}

.pageHeading {
    text-align: center;
    font-size: 3rem;
}

.medium, .small {
    display: none;
}


.infoText p, .infoText h1, .infoText h2, .infoText h3 {
    text-align: center;
}

.infoText a:hover {
    color: var(--secondary);
}

@media screen and (max-width: 18.125em) {

    .big {
        display: none;
    }
    
    .small {
        display: block;
    }

    .legality {
        width: 100%;
    }

}




@media screen and (min-width: 18.125em) and (max-width: 37.5rem) {

    .big {
        display: none;
    }

    .medium {
        display: block;
    }

}


