:root {
    --width-button: 148px;
}

.presentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 32px;
    gap: 48px;
    margin-bottom: 64px;
}

.presentation-body {
    padding: 0 250px;
}

.presentation .title {
    font-weight: 700;
    font-size: 60px;
    line-height: 140%;
    text-align: center;
    color: #111827;
    margin: 0;
}

.presentation .description {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #6D7280;
    margin: 0;
}


.presentation .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(var(--width-button) * 2 + 16px);
}

.presentation .buttons button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    width: var(--width-button);
    height: 40px;
    border: none;
    border-radius: 6px;

    /*Font*/
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.presentation .buttons .inscription {
    background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
    color: #fff
}

.presentation .buttons .info {
    background: #fff;
    color: #545BE8;
}


@media screen and (min-width: 1025px) and (max-width: 1140px) {
    .presentation .title {
        font-size: 48px;
    }
}


@media screen  and (min-width: 641px) and (max-width: 1024px) {

    .presentation {
        margin: 0;
    }

    .presentation-body {
        padding: 32px;
    }

    .presentation .title {
        font-size: 32px;
    }

    .presentation .description {
        font-size: 16px;
    }

    .presentation .buttons {
        flex-direction: column;
        justify-content: center;
    }

    .presentation button,
    .presentation a {
        width: 100% !important;
    }

    .presentation button{
        margin-bottom: 16px;
    }
}


@media screen and (max-width: 640px) {

    .presentation {
        margin: 0;
    }

    .presentation-body {
        padding: 0;
    }

    .presentation .title {
        font-size: 32px;
    }

    .presentation .description {
        font-size: 12px;
    }

    .presentation .buttons {
        flex-direction: column;
        justify-content: center;
    }

    .presentation button,
    .presentation a {
        width: 100% !important;
    }

    .presentation button{
        margin-bottom: 16px;
    }
}