:root{
    --primary: rgb(0, 0, 0, 0);
    --secondary: rgb(0, 0, 0, 0.5);
}

@font-face {
    font-family: 'HeyComic';
    src: url(./fonts/Hey-Comic.ttf);
}

@font-face {
    font-family: 'SimplyRounded';
    src: url(./fonts/Simply-Rounded-Bold.ttf);
}

body {
  background: repeating-conic-gradient(rgb(78, 205, 196) 0% 25%, rgb(144, 224, 218) 0% 50%) 0 0 / 120px 120px;
  animation: animatedBackground 12s linear infinite;
  margin: 0;
  padding: 0%;
}

.gradient {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

#melonade {
    font-family: 'SimplyRounded';
    font-size: 5em;
    position: absolute;
    top: 25px;
    color: rgb(255, 107, 107);
    text-shadow: 2px 2px 25px #00000088;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
    letter-spacing: -2px;
}

.spin-text {
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 
        1px 1px 0px #e63946, 
        2px 2px 0px #f77f00, 
        3px 3px 0px #fcbf49, 
        4px 4px 0px #a8dadc, 
        5px 5px 0px #457b9d;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    animation: spin-3d 4s infinite linear;
}

@keyframes spin-3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.melonadeAlign {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 800px;
    height: 600px;
    background: rgb(247, 255, 247, 0.85);
    border-radius: 20px;
    box-shadow: 0px 7px 50px 10px #22222294;
}

#boxtext {
    font-family: 'HeyComic';
    font-size: 5em;
    position: absolute;
    top: 2%;
    text-align: center;
}

#boxsubtext {
    display: flex;
    font-family: HeyComic;
    font-size: 1.5em;
    overflow-wrap: break-word;
    text-align: center;
    position: absolute;
    top: 25%;
}

.construction {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 91%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 600px;
    height: 80px;
    background: rgb(247, 255, 247, 0.85);
    border-radius: 20px;
    box-shadow: 0px 7px 50px 10px #22222294;

    outline-style: auto;
    outline-color: rgb(255, 230, 109);
}

#UnderConstructionText {
    font-family: 'HeyComic';
    font-size: 1.75em;
    position: absolute;
    top: 10%
}

#UnderConstructionSubText {
    font-family: 'HeyComic';
    font-size: 1em;
    position: absolute;
    top: 55%
}

@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1440px 1440px;
    }
}