body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background color */
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.buttons-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 30px;
}

.login-button,
.signup-button {
    padding: 6px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

.login-button {
    background-color: #000000; /* Green */
    color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* White shadow border */
}

.signup-button {
    background-color: #000000; /* Yellow */
    color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* White shadow border */
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

h1 {
    font-size: 3em; /* Bigger heading size */
}

.description {
    font-size: 0.8em; /* Smaller description size */
    margin-bottom: 0.8px; /* Add some space below the description */
}

.copyright {
    font-size: 0.8em; /* Smaller font size for copyright */
    color: rgb(255, 255, 255)
}

.footer {
    padding: 20px;
    background-color: #000; /* Black background color for footer */
    margin-top: -5em; /* Move footer up by 5 lines */
}

.founder-info {
    font-size: 0.66em;
    margin: 40px 0; /* Adjust the margin to add more gap */
}

.founder-info a {
    color: #fff;
    text-decoration: underline;
}
