body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
    text-align: center;
    background-color: #fff;
    padding: 80px 60px 25px 60px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 95%;
    max-width: 650px;
    overflow: hidden;
    z-index: 1;
}

.container img.logo {
    position: absolute;
    top: 10px;
    left: 15px;
    cursor: pointer;
    width: 175px;
    height: auto;
}

.container .navigation {
    position: absolute;
    top: 10px;
    right: 15px;
}

.container .navigation button {
    background-color: lightgrey;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    color: black;
}

.container .navigation button:hover {
    background-color: #e0e0e0;
}

#footer-links {
    text-align: center;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    margin-bottom: 20px;
}

#footer-links a {
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.privacy {
    color: black;
}

@media (max-width: 800px) {
    #footer-links {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 10px 0;
        width: 90%;
    }

    #footer-links a {
        margin: 0 5px;
    }

    .container {
        width: 80%;
        padding: 80px 20px 25px 20px;
        position: absolute;
        font-size: 0.9em;
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
    }

    .container img.logo {
        width: 125px;
        height: auto;
    }
}

.burger {
    font-size: 23px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 801px) {
    .burger {
        display: none;
    }
}

.drawer-menu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100%;
    width: 250px;
    background-color: #333;
    color: white;
    transition: left 0.3s ease;
    z-index: 5;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    -webkit-tap-highlight-color: transparent;
}

.drawer-menu.active {
    left: 0;
}

.drawer-menu.active ~ .burger {
    display: none;
}

.drawer-menu ul {
    list-style-type: none;
    padding: 25px;
    padding-top: 70px;
    margin: 0;
}

.drawer-menu li {
    margin: 20px 0;
}

.drawer-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.drawer-menu a:hover {
    text-decoration: underline;
}

@media (min-width: 799px) {
    .drawer-menu {
        display: none;
    }
}

@media (max-width: 800px) {
    #footer-links {
        display: none;
    }
}
