canvas {
    background: #f0f0f0;
    
    /*box-shadow: 0 0 0 1px #f7f7f7;*/
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

#mainContent {
    display: none; /* Initially hide the main content */
    color: white; /* Example styling */
    padding: 20px;
    /* Add other styling as needed */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

/* Style for the logo container outside the box */
.logo-container {
    text-align: center;
    margin-bottom: 20px; /* Space between logo and the box */
}

.logo {
    width: 250px;
	max-width: 300px; /* Adjust logo size as needed */
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.logo-text {
    color: #553c9a;
    font-size: 2.5em; /* Slightly larger logo text */
    margin-top: 0;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 75%; /* Adjust width of the white box if needed */
    max-width: 500px; /* Maximum width for the white box */
}

.tagline {
    color: #333;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
    margin: 0 auto;
}

.button {
    display: block;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
}

.signup-button {
    background: linear-gradient(to right, #00087A, #7F00DB);
}

.login-button {
    background-color: #e0e0e0;
    color: #333;
}

.signup-button:hover, .login-button:hover {
    opacity: 0.9;
}