.header {
    display: flex;
    position: absolute;
    top: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 2em;
    flex-direction: column;
    align-items: center;
}

.header img {
    width: 20em;
    image-rendering: pixelated;
}

.header span {
    rotate: -4deg;
    font-size: 2.5em;
    text-shadow: -1px 1px rgb(255 255 255 / 50%);
}

.header img:hover, .header span:hover {
    filter: drop-shadow(0px 0px 1px black);
}

.header img, .header span {
    transition: 0.25s;
}

.access{
    display: flex;
    justify-content: center;
    margin-top: 30vh;
    padding: 10px;
    align-items: baseline;
}

.access button{
    background: linear-gradient(0deg, rgb(100 100 100), rgb(80 80 80));
    color: white;
    font-family: 'Dusk Font B3';
    padding: 5px;
    border: 4px solid rgb(30 30 30);
    font-size: 1.25em;
    border-radius: 5px;
    display: flex;
    filter: drop-shadow(0px 3px 8px rgba(0 0 0 / 0.4));
    align-items: baseline;
    padding-left: 15px;
    padding-right: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.access button span{
    text-shadow: 0 2px rgb(50 50 50);
}

.access .fa-star{
    position: absolute;
    animation: accessStar 30s forwards ease-in-out infinite;
    filter: drop-shadow(0px 0px 2px pink);
    font-size: 0.7em;
}

@keyframes accessStar{
    0%{
        transform: translate(15.6em, -1em)rotate(365deg);
    }
    50%{
        transform: translate(15.6em, -1em)rotate(15deg);
    }
    100%{
        transform: translate(15.6em, -1em)rotate(365deg);
    }
}

.access button .fa-right-to-bracket {
    margin-left: 10px;
    background: rgb(70 70 70);
    padding: 5px;
    border-radius: 5px;
}

.access button:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 0px rgba(0 0 0 / 0.4));
}

.access button:active {
    transform: scale(0.95);
    filter: drop-shadow(0px 0px 8px rgba(0 0 0 / 0.4));
}

.navigation {
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    justify-content: center;
    margin-top: 3vh;
    align-items: center;
}

.navigation a {
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.navigation a:hover{
    text-decoration: underline;
}

.navigation span{
    width: 4px;
    height: 4px;
    background: white;
}

.stats{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5vh;
    justify-items: center;
    margin-left: var(--margin);
    margin-right: var(--margin);
    --margin: 27vw;
}

.statBox {
    background: linear-gradient(0deg, rgb(100 100 100), rgb(80 80 80));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 150px;
    height: 80px;
    justify-content: center;
    border: 4px solid rgb(30 30 30);
    filter: drop-shadow(0px 3px 8px rgba(0 0 0 / 0.4));
    border-radius: 6px;
    margin-bottom: 1vh;
}

.statBox span:first-child {
    font-family: pixltradeHeader;
    font-size: 1.5em;
    margin-bottom: 5px;
    color: white;
}

.statBox {
    background: linear-gradient(0deg, rgb(100 100 100), rgb(80 80 80));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 175px;
    height: 60px;
    justify-content: center;
    border: 4px solid rgb(30 30 30);
    filter: drop-shadow(0px 3px 8px rgba(0 0 0 / 0.4));
    border-radius: 6px;
    margin-bottom: 1vh;
}

.statBox span:first-child {
    font-family: pixltradeHeader;
    font-size: 1.5em;
    margin-bottom: 5px;
    color: white;
}

.stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5vh;
    justify-items: center;
    display: inline-grid;
    gap: 10px;
}

.statsWrapper {
    display: flex;
    justify-content: center;
}

footer > img:first-child {
    image-rendering: pixelated;
    width: 120px;
    position: absolute;
    right: 0;
    transform: translateY(-100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

.containerBox{
    background: #1c1c1c;
    border-top: 2px solid #323232;
    border-bottom: 2px solid #323232;
    height: auto;
    min-height: 320px;
    margin-top: 8vh;
    padding-left: 2vw;
}

.containerBox p{
    min-width: 30%;
    max-width: 50vw;
}