* {
    font-family: "Poppins", sans-serif;
    font-size: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: inline;
    margin-top: 47px;
    margin-left: 42px;
}

.link-menu {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.875px;
    color: #17233d;
    margin-right: 32px;
    cursor: pointer;
}

.button-header {
    background: #6fbf44;
    border: 1px solid #4cb538;
    border-radius: 6px;
    width: 124px;
    height: 51px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 47px;
}

main {
    display: flex;
    align-items: center;
}

img {
    margin: 163px 0 0 123px;
}

section {
    margin-left: 85px;
    width: 493px;
}

h1 {
    font-weight: 700;
    font-size: 62px;
    line-height: 82px;
    letter-spacing: 0.596154px;
    color: #161a49;
    margin-top: 47px;
    margin-bottom: 55px;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0.5px;
    color: #4b505a;
}

.button-main {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1px;
    color: #6fbf44;
    cursor: pointer;
    background: transparent;
    border: none;
    margin-top: 47px;
}

@media screen and (max-width: 768px){
    .link-menu {
        display: none;
    }

    .button-header {
        width: 91px;
        height: 31px;
        margin-left: 56%;
        margin-top: 5%;
        padding: 0;
    }

    main {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }

    section,
    main img {
        width: 100%;
    }
    
    img {
        margin: 40px 0 0 0;
        max-width: 90%;
    }

    section {
        margin: 0;
    }

    h1 {
        width: 100%;
        font-size: 36px;
        line-height: 42px;
        margin: 50px 0;
    }

    p{
        font-size: 14px;
        line-height: 24px; 
        margin: 0 20px;;
    }
}  