*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body{
    position: relative;
}

.horisontal-line{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 5px;
    border-radius: 10px;
    background-color: #17B169;
    margin-bottom: 30px;
}

/* START HERO */
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;

    background: linear-gradient(#17B169, #128C53);
    color: #fff;
}

.hero > h1{
    text-align: center;
    font-size: 40px;
}

.hero > h2{
    text-align: center;
    font-size: 30px;
    padding-top: 10px;
}
/* END HERO */

/* START ABOUT */
.about{
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;

    background-color: #fff;
    color: #000;
}

.about > div{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.about > div > a{
    text-decoration: none;
    background-color: #17B169;
    border-radius: 20px;
    color: #fff;
    padding: 10px;
    text-align: center;
    width: 200px;
    font-weight: 600;
    transition: all 0.5s;
}

.about > div > a:hover{
    background-color: #128C53;
}

.about > div > p{
    max-width: 700px;
    font-size: 16px;
}

.about > div > p > a{
    color: #17B169;
}

.about > img{
    width: 500px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

@media (max-width: 1300px) {
    .about > div > p{
        max-width: 500px;
    } 
}

@media (max-width: 1100px) {
    .about{
        flex-direction: column;
    }

    .about > div{
        align-items: center;
        padding-bottom: 20px;
    }

    .about > div > p{
        max-width: 800px;
    }
}

@media (max-width: 550px) {
    .about > img{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .hero > h1{
        font-size: 30px;
    }

    .hero > h2{
        font-size: 20px;
    }
}
/* END ABOUT */