*{
    /* border: 1px solid red; */
    box-sizing: border-box;
    font-weight: 300;
    /* letter-spacing: 1px; */
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: var(--font-family-sans);
}

:root {
    --primary-offset-color: #A5ADC4;
    --primary-color: #D8DEE1;
    --light-primary-color: #FFF;

    --secondary-color: #0B2240;
    --dark-secondary-color: #345DAE;

    --font-family-sans: "Work Sans", serif;
}


.terms,
.policy{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 16px;

}


.terms-container,
.policy-container{
    width: 70%;
    height: auto;
    padding: 16px 16px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-primary-color);
}

.terms-container h1,
.policy-container h1{
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.terms-container h2,
.policy-container h2{
    width: 100%;
    text-align: left;
    color: var(--secondary-color);
}

.terms-container p,
.policy-container p{
    width: 96%;
    text-align: left;
    color: var(--secondary-color)
}

/* Mobile */
@media screen and (max-width: 900px) {
    .terms,
    .policy{
        padding: 8px 8px;
    }
    
    .terms-container,
    .policy-container{
        width: 100%;
        
    }
}