html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.background {
    background-image: url("files/Bg_4-min.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

h1 {
    color: #fff;
}

h2 {
    display: flex;
    margin-left: 20px;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-top: -65px;
}

.menu {
    height: 15vh;
    width: 70%;
    background-color: #fed289;
    margin-bottom: 20px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    opacity: 80%;
}

.h1-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.centered-h2 {
    align-items: center;
    display: flex;
    height: 100%;
    margin-left: 20px;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-h2 h2 {
    color: #1b2d65;
    margin: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    position: fixed;
    bottom: 3px;
    left: 3px;
    right: 3px;
    width: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-bottom: 30px;
    padding-right: 5px;
}

footer img {
    height: 55px;
}

.exit-button {
    font-size: 20px;
    margin: 0 2px 30px 0;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.success {
    background-color: green;
    border: 1px solid black;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    height: 35px;
    padding: 10px 20px;
    text-align: center;
    width: 100px;
}

.success:hover {
    background-color: darkgreen;
}

a {
    text-decoration: none;
}

footer p {
    color: #fff;
    margin: 0;
}

@media screen and (orientation: landscape) and (max-width: 992px) {
    .menu {
        height: 10vh;
    }
    .h1-container {
        margin-top: -10px; 
    }
}

@media (min-width: 992px) {
    .container {
        align-items: center;
    }

    h2 {
        justify-content: center;
        margin-left: 0;
    }

    .menu {
        border-radius: 10px;
    }

    .centered-h2 {
        justify-content: center;
    }
}
