body {
    background-color: #222;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 40px;
    margin: 0;
    display: flex;
    width: 280px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

p {
    font-size: 20px;
    margin: 0;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.loader-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    gap: 10px;
}

.loader {
    color: #78b42b;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 150px;
    opacity: 0.8;
    margin-top: -20px;
}

.loader:before {
    content: "{";
    display: inline-block;
    animation: pulse 500ms alternate infinite ease-in-out;
    margin-right: 150px;
}

.loader:after {
    content: "}";
    display: inline-block;
    animation: pulse 500ms -500ms alternate infinite ease-in-out;
    margin-left: 150px;
}

.loader:before, .loader:after {
    margin-top: -20px;
}

@keyframes pulse {
    to {
    transform: scale(0.8);
    opacity: 0.5;
    }
}

.loading-dots {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    background: #FFF;
    box-shadow: -18px 0 #FFF, 18px 0 #FFF;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
    25% {
        background: #FFF;
        box-shadow: -18px 0 #78b42b, 18px 0 #FFF;
    }
    50% {
        background: #78b42b;
        box-shadow: -18px 0 #FFF, 18px 0 #FFF;
    }
    75% {
        background: #FFF;
        box-shadow: -18px 0 #FFF, 18px 0 #78b42b;
    }
    100% {
        background: #FFF;
        box-shadow: -18px 0 #FFF, 18px 0 #FFF;
    }
}

#back-button {
    padding: 10px 20px;
    background-color: #78b42b;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

#back-button:hover {
    padding: 10px 40px;
    background-color: white;
    color: #78b42b;
}