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;
}

h1{
    color: white;
    z-index: 1;
    position: relative;
}

.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, h2, p{
    color: white;
    text-align: 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;
z-index: 0;
    background-image: url("/img/ORFooterV.png");
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: bottom;
    min-height: 300px; 
   
}


footer>p{
    text-align: center;
    top: 150px;
    z-index: 3;
    position: relative;
    
    
}

.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);
}
