body, h4, p {
    margin: 0;
    bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.page {
    position: fixed;
    top:0; bottom: 0;
    left:0; right: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    background-image: url('assets/bg-mobile.webp');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 84px 22px 0 22px;
}

.container {
    display: grid;
    grid-template-rows: max-content auto;
    row-gap: 10%;
    width: 100%;
}

.logo-container {
    height: 87px;
}

.info {
    display: grid;
    grid-template-rows: repeat(3, max-content);
    row-gap: 40px;
}

.divider {
    width: 100%;
    border: 1px solid #FFFFFF;
    opacity: 0.2;
}

.en-container, .fr-container {
    display: grid;
    grid-template-rows: max-content max-content;
    row-gap: 12px;
    max-width: unset;
    width: 100%;
}

h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    color: #ffffff;
}

p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    color: #ffffff;
}

@media only screen and (min-width: 576px) {
    .page {
        background-image: url('assets/bg.webp');
        padding-top: 116px;
        background-position: bottom center;
        background-size: 300%;
    }
    .container {
        max-width: 512px;
        row-gap: 207px;
        height: fit-content;
    }
    .logo-container {
        height: 107px;
    }
    .info {
        row-gap: 44px;
    }
    h4 {
        font-size: 28px;
        line-height: 36px;
    }
    p {
        font-size: 18px;
        line-height: unset;
    }
    p br {
        display: none;
    }
}

@media only screen and (min-width: 1204px) {
    .page {
        padding: 0;
        align-items: center;
        background-size: auto;

    }
    .container {
        row-gap: 188px;
        max-width: unset;
        width: fit-content;
    }
    .logo-container {
        height: 118px;
    }
    .info {
        grid-template-rows: unset;
        grid-template-columns: max-content 2px max-content;
        column-gap: 83px;
    }
    .en-container {
        width: 429px;
    }
    .divider {
        height: 106px;
        border: none;
        background-color: #fff;
        width: 2px;
        margin-top: 30px;
    }
    .fr-container {
        margin-left: 10px;
        width: 479px;
    }
    p {
        line-height: 27px;
    }
    p br {
        display: initial;
    }
}
