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

body {
    padding: 20px;
}

header {
    margin-top: 47px;
    margin-left: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.linkar-header {
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.87px;
    color: #17233D;
    margin-right: 32px;
}

.linkar-button {
    cursor: pointer;
    background: #6FBF44;
    border: 1px solid #4CB538;
    border-radius: 6px;
    width: 124px;
    height: 51px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-left: auto;
}

img {
    margin: 50px auto;
    display: block;
    max-width: 100%;
    height: auto;
}

section {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    color: #161A49;
    margin: 20px 0;
}

p {
    font-weight: 400;
    font-size: 18px;
    color: #4B505A;
    margin: 20px 0;
}

.linkar-other-link {
    font-weight: 500;
    font-size: 18px;
    color: #6FBF44;
    display: inline-block;
    margin-top: 10px;
}

@media screen and (max-width: 391px) {
    .linkar-header {
        display: none;
    }

    .linkar-button {
        margin: 20px auto;
        display: block;
    }

    .section-prime {
        width: 100%;
        padding: 0 20px;
        position: relative;
        top: 0;
        text-align: center;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .linkar-other-link {
        font-size: 18px;
    }

    img {
        margin: 30px auto;
        display: block;
        position: static;
    }
}
   
