#language{
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
}

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.wrapper h1, .btn-facebook {
    margin: 10px;
}

/* brand logo */
.brand-logo{
    height: 150px;
}

/* until then text */
.until-then-container p:nth-child(2){
    font-size: 20px;
    position: relative;
    top: 5px;
    animation: moveArrow 1s infinite alternate;
}

@keyframes moveArrow {
    0%{
        top: 10px;
    }
    100%{
        top: 15px;
    }
}

/* follow button */
.btn-facebook a{
    color: inherit;
    text-decoration: none;
}