html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}


body {
    display: flex;
    flex-direction: column;
    background-image: url("/img/Login_BG.jpg");
    background-color: #e7e5e9;
    background-size: 100%;
}


header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.logo {
    position: absolute;
    width: 180px;
    top: 10px;
    z-index: 2;
}

.logo:hover {
    cursor: pointer;
}

.background_top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

h1 {
    color: white;
    z-index: 1;
    position: relative;
}


h1, h2, p {
    color: white;
    text-align: center;
    position: relative;
}


.liste {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


main {
    padding-top: 150px;
    line-height: 50px;
}


a {
    color: rgb(173, 173, 173);
    transition: 0.4s;
}

a:hover {
    color: rgb(117, 48, 163);
}


footer {
    width: 100%;
    color: white;
    position: relative;
    background-image: url("/img/ORFooterV.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 300px;
    z-index: 0;
}

footer > p {
    text-align: center;
    top: 150px;
    position: relative;
    z-index: 3;
}

.footer-links {
    text-align: center;
    margin-top: 200px;
    z-index: 3;
}

.footer-links a {
    margin: 0 12px;
    color: white;
    display: inline-block;
    transition: 0.4s;
}

.footer-links a:hover {
    color: rgb(173, 173, 173);
}
