/*element principal en relatif pour permettre aux elements absolus d'etre positionnes*/
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: rgb(172, 184, 219);
    font-weight: 600;
    font-family: 'Josefin Sans';
    font-size: 1.25em;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/background_sortie.jpg");
    filter: blur(3px);
}

.center {
    position: relative;
    margin-left:25%;
    margin-top: 10%;
    width: 50%;
    height: 80%;
    text-align: justify;
}

.center h1, .center h2  {
    text-align: center;
}


.tryagain {
    margin-top: 5%;
}

.tryagain a, .center a{
    font-weight: 800;
    font-size: 1.3em;
    color: rgb(14, 227, 14);
    text-align: center;
    margin-left: 43%;
}

footer {
    position: fixed;
    bottom: 0;
    left: 25%;
    width: 50%;
    color: rgb(73, 73, 73);
    text-align: center;
}