/* Body and Loader Styling */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
    position: relative;
    /* Important for positioning the button */
}

.loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    z-index: 999;
}

.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Main Content */

.main-content {
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff5555;
}

p {
    font-size: 1.2rem;
}


/* Moving Button */

#moving-button {
    position: absolute;
    /* Absolute positioning for movement */
    padding: 10px 20px;
    background-color: #ff5555;
    border: none;
    color: white;
    cursor: default;
    /* Show as default cursor */
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#moving-button:hover {
    background-color: #ff7777;
}


/* Fullscreen Button */

#fullscreen-button {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#fullscreen-button:hover {
    background-color: #0056b3;
}