body{
    font-family: 'Antipasto';

    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: 150% -60%;
    overflow: hidden;
    background-image: url(../img/ova.svg);
}
.container{
    display: flex;
    position: absolute;
    height: 100%;
    width: 60%;

    top: 0;
    left: 50%;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-left: -30%;
}
.container .logo{
    width: 80%;
    margin-bottom: 15px;
}
.container .logo + h3{ color: #262262; }

.page{
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background: rgb(38,34,98);
    background: linear-gradient(39deg, rgba(38,34,98,1) 0%, rgba(14,255,155,1) 100%);

    padding: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    transform: translateY(100%);
}
.page.active{ transform: translateY(0); }
.page .relative{
    width: 100%;
    height: 100%;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #fff;
}
.page .who,
.page .contact{
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 50%;
    padding: 50px;
}
.page .who{ padding-right: 250px; }
.page .contact{
    padding-left: 250px;
    text-align: right;
}
.page h3{
    background: rgb(38,34,98);
    background: linear-gradient(39deg, rgba(38,34,98,1) 0%, rgba(14,255,155,1) 100%);

    font-family: 'Antipasto';

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    font-size: 2.4em;
}
.page ul{
    padding: 0 0 0 20px;
    margin: 0;

    width: 100%;
    list-style-type: "-  ";
}
.page p, .page ul{ font-size: 1.4em; }
.page img, .page .fermer{ position: absolute; }
.page img{ height: 100%; }
.page .fermer{
    display: inline-block;
    background-color: #fff;
    padding: 5px 15px;

    font-size: 1.3em;
    text-decoration: none;

    border-radius: 19px;
    bottom: 40px;
    color: #262262;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.page .fermer:hover{
    background-color: #0EFF9B;
}



footer{
    position: absolute;
    bottom: 0px;
    left: 0px;

    width: 100%;
    height: auto;

    text-align: center;
    padding: 15px 0;
}
footer ul{
    padding: 0 0;
    margin: 0;

    width: 100%;
    list-style: none;
}
footer ul li{
    display: inline-block;
    margin-right: 10px;
}
footer ul li a{
    font-family: 'Antipasto';
    color: #202020;
    font-size: 1.2em;
    text-decoration: none;
    position: relative;

    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
footer ul li:hover a{ color: #262262; }
footer ul li a:before{
    content: '';

    position: absolute;
    bottom: -3px;
    left: 0;

    height: 3px;
    width: 100%;
    background-color: #0EFF9B;

    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
footer ul li:hover a:before{
    transform: scaleX(1);
    color: #0EFF9B;
}


@media screen and (max-width: 440px) {
    body{ background-image: none; }
    .container{
        max-width: 100%;
        width: 100%;
        margin-left: -50%;

        background-repeat: no-repeat;
        background-size: 145% auto;
        background-position: -30% 100%;
        overflow: hidden;
        background-image: url(../img/ova.svg);
    }
    .page .relative{
        flex-direction: column;
        justify-content: center;
    }
    .page .who,
    .page .contact{
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 100%;
        padding: 15px;
    }
    .page .who{ padding-right: 15px; }
    .page .contact{
        padding-left: 15px;
        text-align: left;
    }
    .page img{
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .page .relative{
        flex-direction: column;
        justify-content: center;
    }
    .page .who,
    .page .contact{
        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 100%;
        padding: 15px;
    }
    .page .who{ padding-right: 15px; }
    .page .contact{
        padding-left: 15px;
        text-align: left;
    }
    .page img{
        display: none;
    }
}
