@charset "UTF-8";

section {
    margin: 50px auto 0 auto;
    padding: 0;
    width: 80%;
    max-width: 1362px;
    overflow: hidden;
}

section img {
    margin: 0;
    padding: 0;
    height: 250px;
    position: relative;
    transform: translate(-50%);
    left: 50%;
}

section p {
    margin: 100px 0 0 0;
    padding: 0;
    font-family: korolev-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(18px, 4vw, 24px);
    text-align: justify;
    -webkit-hyphens: auto; 
    hyphens: auto;
}

section button {
    margin: 40px 0 40px 0;
    padding: 10px 12px 10px 12px;
    font-family: korolev-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(18px, 4vw, 24px);
    color:  #52AE32;
    border: 1px solid #52AE32;
    border-radius: 0%;
    background-color: white;
    width: 140px;
    cursor: pointer;

}

section button:hover {
    color: white;
    background-color:  #52AE32;
    transition: ease 200ms;
}

@media screen and (max-width: 1000px) {
    section {
        width: 90%;
    }
}