*{
    padding: 0%;
    margin: 0%;
}

a{
    text-decoration: none;
}
body{
    background: whitesmoke;
    overflow-x: hidden;
}
/* header */
header{
    display: flex;
    justify-content: center;
    background: white;
    border-block-end: 1px solid grey;
    width: 100vw;
    height: 15vh;
}

header .header-container{
    width: 50%;
    display: flex;
    justify-content: space-between;
}

/* back button */
header .header-container .back-button{
    display: flex;
    align-items: center;
}

header .header-container .back-button button{
    cursor: pointer;
    border: none;
    padding: 2px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 2rem;
    background: white;
}

/* logo */
header .header-container .logo{
    display: flex;
    align-items: center;
    cursor: default;
}

header .header-container .logo img{
    border: none;
    width: 150px;
    height: 50px;
    background: linear-gradient(180deg, white, white, whitesmoke, grey);
}
header .header-container .logo h1{
    font-family: sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: orangered;
}



/* terms-container */

.body-container{
    width: 100vw;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.body-container .terms-container{
    background: white;
    background-attachment: fixed;
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* 768px screen resolution */
@media(max-width: 768px){
    /* header */
    header{
        display: flex;
        justify-content: center;
        background: white;
        border-block-end: 1px solid grey;
        width: 100vw;
        height: 15vh;
    }

    header .header-container{
        width: 90%;
        display: flex;
        justify-content: space-between;
    }

    /* back button */
    header .header-container .back-button{
        display: flex;
        align-items: center;
    }

    header .header-container .back-button button{
        cursor: pointer;
        border: none;
        padding: 2px;
        font-family: sans-serif;
        font-weight: bold;
        font-size: 2rem;
        background: white;
    }

    /* logo */
    header .header-container .logo{
        display: flex;
        align-items: center;
        cursor: default;
    }

    header .header-container .logo img{
        border: none;
        width: 150px;
        height: 50px;
        background: linear-gradient(180deg, white, white, whitesmoke, grey);
    }
    header .header-container .logo h1{
        font-family: sans-serif;
        font-size: 22px;
        font-weight: bold;
        color: orangered;
    }



    /* terms-container */

    .body-container{
        width: 100vw;
        height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .body-container .terms-container{
        background: white;
        background-attachment: fixed;
        height: 100%;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
}