@font-face {
    font-family: Jersey15;
    src: url(Jersey15-Regular.ttf);
}

html {
    background-color: black;
    margin: 0px;
    box-sizing: border-box;
    font-family: Jersey15;
}




@-webkit-keyframes colorchange {

    0% {
        color: #ff7ebc;
    }

    10% {

        color: #ff837e;
    }

    20% {

        color: #ffc980;
    }

    30% {

        color: #edff84;
    }

    40% {

        color: #a8ff83;
    }

    50% {

        color: #83ff9d;
    }

    60% {

        color: #84ffe1;
    }

    70% {

        color: #80d4ff;
    }

    80% {

        color: #7b8cff;
    }

    90% {

        color: #af7cff;
    }

    100% {

        color: #f97eff;
    }
}

@keyframes colorchange {
    0% {
        color: #ff7ebc;
    }

    10% {
        color: #ff837e;
    }

    20% {
        color: #ffc980;
    }

    30% {
        color: #edff84;
    }

    40% {
        color: #a8ff83;
    }

    50% {
        color: #83ff9d;
    }

    60% {
        color: #84ffe1;
    }

    70% {
        color: #80d4ff;
    }

    80% {
        color: #7b8cff;
    }

    90% {
        color: #af7cff;
    }

    100% {
        color: #f97eff;
    }
}

@-webkit-keyframes bwcolorchange {
    0% {
        border-color: #8a8a8a;
    }

    20% {
        border-color: #787878;
    }

    40% {
        border-color: #717171;
    }

    50% {
        border-color: #666666;
    }

    60% {
        border-color: #595959;
    }

    75% {
        border-color: #424242;
    }

    90% {
        border-color: #2c2c2c;
    }

    100% {
        border-color: #1a1a1a;
    }
}

@keyframes bwcolorchange {
    0% {
        border-color: #8a8a8a;
    }

    20% {
        border-color: #787878;
    }

    40% {
        border-color: #717171;
    }

    50% {
        border-color: #666666;
    }

    60% {
        border-color: #595959;
    }

    75% {
        border-color: #424242;
    }

    90% {
        border-color: #2c2c2c;
    }

    100% {
        border-color: #1a1a1a;
    }
}

#headline {
    -webkit-animation: colorchange 7s infinite alternate;
    animation: colorchange 7s infinite alternate;
    font-size: 80px;
    margin: 0px;
    text-align: center;
    line-height: 1.4;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.emphasize {
    padding: 0 10%;
}

ol li {
    font-size: x-large;
    line-height: 1.3;
}
 .lists {
    font-size: x-large;
    line-height: 1.2;
 }

.button {
    border: 3px outset #d3d3d3;
    border-radius: 10px;
    margin: 20px;
    margin-top: 20px;
    padding: 5px;
    width: 110px;
    height: 50px;
    box-shadow: 0px 4px 0px 3px #2c2c2c;
    color: black;
    list-style-type: none;
    font-size: x-large;
    line-height: 2;
    text-align: center;
    display: block;
}
.button a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

nav ul li:nth-child(2) {
    background: -webkit-linear-gradient(left, #af7cff, #7b8cff);
}

nav ul li:nth-child(3) {
    background: -webkit-linear-gradient(left, #67a2da, #7bcbb7);
}

nav ul li:nth-child(4) {
    background: -webkit-linear-gradient(left, #85bc91, #ced79d);
}

nav ul li:nth-child(5) {
    background: -webkit-linear-gradient(left, #ccaa7e, #c1706d);
}

nav ul li:nth-child(6) {
    background: -webkit-linear-gradient(left, #cf7ca4, #af7cff);
}

.zigzag p:nth-child(even) {
    text-align: end;
}



.button:hover,
.active {

    background: -webkit-linear-gradient(left, rgb(118, 118, 120), rgb(44, 43, 44));
    color: white;
    text-shadow: 0px 0px 10px 5px #e6ff99;
    cursor: pointer;
    border: 3px solid #454444;
    box-shadow: none;
}

hr {
    height: 2px;
    border: none;
    background-color: #494949;
    -webkit-animation: bgcolorchange 4s infinite alternate;
    animation: bgcolorchange 4s infinite alternate;
}

h1 {
    font-size: 45px;
    text-align: center;
    line-height: 1.6;
}

h2 {
    font-size: 35px;
    line-height: 1.5;
}

h3 {
    font-size: 30px;
    text-align: end;
}

h4 {
    font-size: 23px;
    text-align: end;
    color: #6a6a6a;
    font-style: italic;
}
h5 {
    font-size: 30px;
    text-align: center;
}

p {
    font-size: x-large;
    line-height: 1.1;
}

body>div {
    color: #cccccc;
    max-width: 67%;
    margin: 0px auto;
}

.page-box {
    padding: 40px;
    padding-top: 5px;
    border: 2px solid #494949;
    -webkit-animation: bwcolorchange 7s infinite alternate;
    animation: bwcolorchange 7s infinite alternate;
}

a {
    text-decoration: none;
    color: unset;
}


.gradient-text-zero {
    background: linear-gradient(180deg, #c29bff, #8e9dfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-one {
    background: linear-gradient(180deg, #67a2da, #7bcbb7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-two {
    background: linear-gradient(180deg, #85bc91, #ced79d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-three {
    background: linear-gradient(180deg, #ccaa7e, #c1706d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-four {
    background: linear-gradient(180deg, #cf7ca4, #af7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-button {
    display: none;
}

@media (max-width: 950px) {
    body>div {
        max-width: max-content;
    }

    #headline {
        font-size: 55px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .button {
        display: block;
        margin: 6px auto;
        font-size: xx-large;
        line-height: 1.5;
        width: 82%;
        max-width: 100%;
        z-index: 52;
    }


    .menu-button {
        display: block;
        background: -webkit-linear-gradient(left, #af7cff, #7b84ff);
        margin: 6px auto;
        margin-bottom: 15px;
        font-size: xx-large;
        line-height: 1.5;
        width: 82%;
        max-width: 100%;
        box-shadow: 0px 4px 0px 3px #56467a;
    }

    .button {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .button.hidden {
        opacity: 0;
        pointer-events: none;
        display: none;

    }

    nav ul li:nth-child(2) {
        background: linear-gradient(180deg, #af7cff, #7b8cff);
    }

    nav ul li:nth-child(3) {
        background: linear-gradient(180deg, #67a2da, #7bcbb7);
    }

    nav ul li:nth-child(4) {
        background: linear-gradient(180deg, #85bc91, #ced79d);
    }

    nav ul li:nth-child(5) {
        background: linear-gradient(180deg, #ccaa7e, #c1706d);
    }

    nav ul li:nth-child(6) {
        background: linear-gradient(180deg, #cf7ca4, #af7cff);
    }

}

@media (max-width: 500px) {
    .page-box {
        padding: 20px;
    }
}