/* Basic styles */
body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Loader spinner */
#loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 200px;  /* Increase the size here */
    height: 200px; /* Increase the size here */
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

/* Keyframe for spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Button styling */
button {
    background-color: green;
    border: 2px solid white;
    color: white;
    padding: 40px 80px;
    font-size:80px;
    font-weight:bold;
    border-radius: 10px;
}
div {width:100%;}
