body{
    background-color: #FF665C;
}

body *{
    font-family: "Adelphe Germinal";
}

#container{
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow-y: auto;
}

#container > div{
    padding: 0 2rem;
    margin-bottom: 2rem;
}

#title{
    position: fixed;
    height: 100vh;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    font-family: "Adelphe Fructidor";
    font-weight: 600;
    text-align: center;
    line-height: 80%;
    margin: 0;
}

.texte{
    margin-top: 6rem;
}

.texte p{
    margin: 0;
}

.texte p:not(:first-child){
    text-indent: 1.5em;
}

#container a{
    font-size: inherit;
    background: none;
    border: 1.5px solid black;
    padding: 0.25em 1em 0.1em 1em;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

#container a:hover{
    background-color: black;
    color: #FF665C;
}

@media (max-width: 992px){

    #container{
        position: relative;
        width: 100%;
    }

    #title{
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 6rem;
    }

    .texte{
        margin-top: 3rem;
    }

}