/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.container {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1;
    background-image: url('../images/hearing-test.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

header {
    width: 100%;
    background-color: #007bff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.login_button {
    text-decoration: none;
}

.login_button a {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #73b6ff;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login_button a:hover {
    background-color: #0056b3;
    color: #fff;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    max-width: 90%;
    margin: 40px auto;
}

.content h2 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    max-width: 600px;
    font-weight: bold;
}

footer {
    background-color: #007bff;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-top: auto;
    border-top: 2px solid #0056b3;
}

footer p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
    }

    .content p {
        font-size: 16px;
        max-width: 100%;
    }

    .login_button a {
        font-size: 14px;
        padding: 8px 16px;
    }

    .content h2 {
        font-size: 24px;
    }
}
