body {
    background: url('images/bck.png') no-repeat center center fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-size: cover;
    color: #333;
}

.header {
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    background-size: cover;
    color: #000000ba;
    text-align: center;
}

.header a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
}

.hero {
    background-image: url('images/bck.png') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero .buttons {
    margin-top: 1rem;
}

.hero .buttons a {
    background-color: #0ed215f0;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 0.5rem;
}

.hero .buttons a:hover {
    background-color: #35d012;
}

.nav {
    display: flex;
    justify-content: center;
    padding: 1rem 1;
}

.nav a {
    color: #010201c4;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    list-style: none;
    text-align: center;
    background-color: #35d01274;
    box-shadow: 0 0 10px rgba(10, 27, 43, 0.5);
    /* Adjusted shadow for better aesthetics */
}

.nav a:hover {
    background-color: #35d012;
}

.content {
    padding: 2rem;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(10, 27, 43, 0.5);
    /* Adjusted shadow for better aesthetics */
    background-color: #2bee09;
}

.footer {
    background-color: #2bee09;
    color: #fff;
    text-align: center;
    padding: rem 0;
    position: absolute;
    width: 100%;
}

.login-container {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

.login-container label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #0056b3;
}

.login-container .signup-link {
    text-align: center;
    margin-top: 20px;
}

.login-container .signup-link a {
    color: #28a745;
    text-decoration: none;
}

.login-container .signup-link a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    margin-bottom: 16px;
    text-align: center;
}

.user-info {
    text-align: center;
    margin-top: 20px;
}

.user-info span {
    font-weight: bold;
    color: #333;
}

.signout-button {
    text-align: center;
    margin-top: 10px;
}

.signout-button button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.signout-button button:hover {
    background-color: #c82333;
}

.signup-container {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.signup-container h1 {
    text-align: center;
    margin-bottom: 24px;
    color: #333;
}

.signup-container label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.signup-container input[type="email"],
.signup-container input[type="password"],
.signup-container input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.signup-container button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.signup-container button:hover {
    background-color: #218838;
}

.signup-container .login-link {
    text-align: center;
    margin-top: 20px;
}

.signup-container .login-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-container .login-link a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    margin-bottom: 16px;
    text-align: center;
}

.signout-button {
    margin-top: 20px;
    text-align: center;
}

.signout-button button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.signout-button button:hover {
    background-color: #c82333;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    background: url('images/bck.png') no-repeat center center fixed;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content .terms-text {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
    background: url('images/bck.png') no-repeat center center fixed;
    border-radius: 4px;
}

.modal-content button {
    background-color: #015615;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 32px;
    cursor: pointer;
    float: right;
}

.modal-content button:hover {
    background-color: #218838;
}