.presentation {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
}

.presentation__description-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.44;
    color: #fff;

}

.presentation__contact-button {
    background-color: #2d9b55;
    padding: 1.5rem 4rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    display: inline-block;
    border-radius: 1.5rem;
}

.presentation__image {
    align-self: center;
    max-width: 100%;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .presentation {
        margin-top: 5rem;
    }
}

@media (min-width: 900px) {
    .presentation {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .presentation__image {
        max-width: 50%;
        margin-top: 3rem;
        border-radius: 8px;
    }

    .presentation__description-container {
        max-width: 40%;
    }
}

@media (min-width: 1040px) {
    .presentation {
        margin-top: 10rem;
    }

    .presentation__description-title {
        font-size: 4.2rem;
    }
}
