* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Quicksand', sans-serif;
    width: 100vw;
    height: 100vh;
    padding: 100px;
    box-sizing: border-box;
    display: flex;
}

h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    color: #2CADB2;
    word-wrap: break-word;
    padding-bottom: 1.6%;
}
h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
    color: #707070;
}
h3 {
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    color: #707070;
    padding-bottom: 1%;
}
p {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.3;
    color: #707070;
    padding: 20px 0;
}

hr {
    border: 0;
    width: 70px;
    height: 4px;
    background: #b4b4b4;
    display: block;
    margin: 0 auto 20px;
}
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 10px 10px 40px 0px rgba(44,90,178,0.11);
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    padding: 5%;
}



/*%%%%%%%%%%%%%%%%%%%%%%%%%---MEDIA---%%%%%%%%%%%%%%%%%%%%%%%%%*/

@media screen and (max-width: 768px){
    body {
        padding: 0;
    }
}



@media screen and (max-width: 425px){
    h1 {
        font-size: 37px;
        line-height: 34px;
    }
    h2 {
        font-size: 18px;
        line-height: 25px;
    }
    h3 {
        font-size: 20px;
    }
    p {
        font-size: 13px;
        line-height: 34px;
    }
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%---END_media---%%%%%%%%%%%%%%%%%%%%%%%%%*/
