@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');
#content {
    display: flex;
    justify-content: center;
}

section .alert {
    position: absolute;
    top: -100px;
    width: 100%;
    text-align: center;
    font-size: 24px;
}

section {
    width: 50vw;
    font-family: "Inria Sans", sans-serif;
}

#content_text h1 {
    position: relative;
    animation: soldansaga 2s ease;
}

@keyframes soldansaga {
    from {
        left: -200px;
        opacity: 0;
    }
    to {
        left: 0px;
        opacity: 1;
    }
}

#content_text p {
    font-size: 18px;
    font-weight: 300;
    position: relative;
    animation: sagdansola 2s ease;
}

@keyframes sagdansola {
    from {
        right: -200px;
        opacity: 0;
    }
    to {
        right: 0px;
        opacity: 1;
    }
}

@media screen and (max-width:1200px) {
    section .alert {
        position: absolute;
        top: -100px;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
}

@media screen and (max-width:1000px) {
    section .alert {
        position: absolute;
        top: -100px;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    section {
        width: 60vw;
    }
}

@media screen and (max-width:850px) {
    section .alert {
        position: absolute;
        top: -100px;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    section {
        margin-top:-20px;
        width: 65vw;
    }
}