:root {
    --background-color: #FFFFFF;
    --font-family: "Yaldevi", sans-serif;
    --orange: #FF4D00;
    --body-text-color: #202020;
    --gray : #414141;
    --white : #FFFFFF;
    --title-font: "Vesper Libre", serif;
    --body-text-size-sm : 1rem;
    --body-text-size-md : 1.6rem;
}

@import url('https://fonts.googleapis.com/css2?family=Yaldevi:wght@200..700&display=swap');

body, html {
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.terms-wrapper {
    padding: 15vh 10vw;
    background-color: #fdfdfd;
}

.terms-wrapper > h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.terms-wrapper > h2 {
    font-family: var(--title-font);
    font-size: var(--body-text-size-md);
    margin-bottom: 1rem;
}

.terms-wrapper > p {
    font-family: var(--font-family);
    font-size: var(--body-text-size-sm);
    color: var(--body-text-color);
    line-height: 1.5;
    padding-left: 2vw;
}

.terms-wrapper  a {
    color: var(--orange);
    text-decoration: none;
}

.terms-wrapper  a:hover {
    text-decoration: underline;
    font-weight:500;
}