body {
    font-family: Roboto Slab;
}

.text-main {
    display: flex;
    flex-direction: column;
    /* justify-content: left; */
    width: 65%;
    /* text-align: left; */
}

h2, h3 {
    color: rgb(67, 84, 116);
}

.terms-nav {
    list-style: none;
    display: flex;
    /* justify-content: center; */
}

li {
    background-color: rgb(64, 83, 109);
    border: 1px solid white;
    padding: 15px;
}
a {
    text-decoration: none;
    color: rgb(252, 250, 246);
}
/* a > li {
    text-decoration: none;
    color: rgb(252, 250, 246);
} */

a > li:hover {
    text-decoration: none;
    color: rgb(162, 173, 209);
    transition: 0.3s;
}

a:active, a:visited, a:focus {
    text-decoration: none;
}



@media (max-width: 768px ) {
    .terms-nav {
        font-size: 11px;
    }
    .text-main {
        width: 100%;
    }
    li {
        border: 1px solid white;
        padding: 5px;
    }
}
