#splash{
    align-content: center;
}

#name{
    position: relative;
    text-align: center;
    padding: 0;
    margin: 0;
    height: fit-content;
    font-size: 3em;
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
}

#title{
    position: relative;
    text-align: center;
    font-size: 2.5em;
    font-weight: 200;
    font-family: 'Josefin Sans', sans-serif;
    padding-bottom: 50px;
}

#back-button{
    display: grid;
    padding-bottom: 30px;
    justify-content: space-around;
}

#back-button a{
    border: none;
}

#back-button a:hover{
    border: none;
    background-color: #00000000;
}

#back-button img{
    width: 3em;
    height: 3em;
}

#presentation div{
    position: relative;;
    width: 75%;
    left: 50%;
    transform: translateX(-50%);
}

#presentation p{
    text-align: justify;
}

@media screen and (max-width:1024px) /* Mobile screens */
{
    #name{
        position: relative;
        text-align: center;
        padding: 0;
        margin: 0;
        height: fit-content;
        font-size: 2.5em;
        font-weight: 500;
        font-family: 'Josefin Sans', sans-serif;
    }
    
    #title{
        position: relative;
        text-align: center;
        font-size: 2em;
        font-weight: 200;
        font-family: 'Josefin Sans', sans-serif;
    }

    #back-button img{
        width: 2em;
        height: 2em;
    }
    
    #presentation div{
        position: relative;;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}