body {
    font-family: Comfortaa, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f5ee;
}

header {
    background-color: white;
    color: #555;
    border-bottom: 1px solid #ddd;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
}

button {
    background-color: white;
    color: #444;
    font-size: 18px;
    border: 2px solid #f9d111;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.1s;
}

button:hover {
    background-color: #eee;
}

#loading-spinner {
    /* Add styles for your loading spinner container */
    position: fixed;
    /* or absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    /* Ensure it's above other elements */
}

#loading-spinner img {
    /* Styles for the spinner image */
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
    /* Adjust size as needed */
}

footer {
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}