.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.closed-header {
    font-size: 8vh;
    text-align: center;
    margin-bottom: 20px;
    width: 90vw;
}

.center p {
    font-size: 2.5vh;
    text-align: center;
    margin: 0;
    width: 90vw;
}

.page-background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(20deg,#40ebff,#115eec);
    background-size: 240% 240%;
    animation: gradientAnim 10s infinite alternate;
}

@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media screen and (max-width: 500px) {
    .closed-header {
        font-size: 10vw;
    }

    .center p {
        font-size: 5vw;
    }
}

.page-background .crowns {
    position: absolute;
    inset: 0;
    background-image: url(/assets/media/Backgrounds/CrownPatternEmpty.png);
    background-repeat: repeat;
}