@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,700&family=Roboto+Slab:wght@700&display=swap');

body{
    width: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;

}

.row-center{
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #53BEA6;
}

section {
    width: 50%;

    display: flex;
    flex-direction: column;

    justify-content: center;    

}

.section1 {
    padding: 8%;
    align-items: left;
    background-color: #FFF0D1;
}

.section2 {
    align-items: center;
    background-color: #53BEA6;
}

.figure {
    width:60%;
}

h1 {
    margin-bottom: 6%;

    font-size: xx-large;
    font-weight: bold;

    font-family: 'Roboto Slab', serif;
}

p {
    font-size: large;
    font-weight: 400;
    line-height: normal;
    font-family: 'Roboto Flex', sans-serif;
    margin-bottom: 4%;
    margin-top: 2%;
}

.button-get-started {
    width: 208px;
    height: 35px;
    padding: 1% 3%;
    margin-top: 8%;

    border: 0px solid #fff;
    border-radius: 24px;

    background-color: #FF886B;
    color: #fff;
    box-shadow: 1px 4px 3px rgba(0, 0, 0, 0.18);
    
    text-decoration: none;
    font-weight: 700;
    font-family: 'Roboto Flex', sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
}

.button-get-started img {
    width: 24px;
    margin-left: 16px;
}

.button-get-started:hover{
    background-color: #53BEA6;
}

.forma{
    margin-left: 8%;
}

h2{
    margin-bottom: 1%;

    font-size: x-large;
    font-weight: bold;

    font-family: 'Roboto Slab', serif;
}

.button-link {
    width: 184px;
    height: 30px;
    padding: 1%;

    border: 1px solid #2F7D81;
    border-radius: 24px;

    color: black;

    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto Flex', sans-serif;

    margin-bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-link:hover{
    color: white;
    background-color: #FF886B;
    border: none;
}

@media (max-width: 800px){
    .figure{
        width: 0;
        height: 0;
    }

    .section1{
        margin-top: 16%;
        padding: 1;
        width: 100%;
        align-items: center;
    }

    h1{
        font-size: 22px;
    }

    h2{
        font-size: 20px;
    }
    
    p{
        text-align: center;
    }

    .button-get-started{
        margin-top: 4%;
        font-size: 14px;
        width: 158px;
        height: 30px;
    }

    .button-get-started img{
        width: 20px;
        margin-left: 12px;
    }

    .forma{
        margin-left: 0;
        width: 50%;
    }

    .row-center{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section2 .button-link {
        margin-bottom: 4px;
    }
    
    .section2{
        margin-top: 6px;
        margin-bottom: 6px;
        
    }
    
}