.main {
    position: absolute;
    aspect-ratio: 1;
    max-height: 80vh;
    background-image: url(space.png);
    background-size: cover;
    margin:auto;
    left: 0;
    right: 0;
    top: 10px;
    border-style: solid;
    border-radius: 10%;
    border-color: white;
    border-width: 10px;
    box-shadow: 7px 7px 5px rgb(99,33,66,.7);
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    position: absolute;
    left: 15%;
    top: 10%;
    rotate: -10deg;

    animation-name: float;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

}

@keyframes float {
    0% {}
    25% {transform: translateY(-10px) ; animation-timing-function: ease;}
    75% {transform: translateY(10px) ; animation-timing-function: linear;}
    100% {}

}

body {
    background-image: url('ankbg.png');
    background-position: cover;
}


.gamelink {
    display: block;
    padding: 10px;
    font-family: "Press Start 2P", monospace;
    background-color: rgb(255, 200, 200);
    text-decoration: none;
    text-align: center;
    font-size: 2.5em;
    cursor: pointer;
    max-width: 70vh;
    margin-top: 86vh;
    margin-left:auto;
    margin-right: auto;
    border-style: solid;
    border-color: rgb(99,33,66);
    border-radius: 20px;
    color: white;
    text-shadow: 3px 3px 3px rgb(99,33,66);
}

.footnote {
    font-family: "VT323", monospace;
    color:rgb(99,33,66);
    font-size: 1em;
    background-color: rgb(255,255,255,.5);
    padding:5px;
    border-style: none;
    border-radius: 10%;
    max-width: 70vh;
    margin: auto;
    margin-top: 20px;

}

.maingrid {
    display: grid;
    width: 80vw;
    grid-template: auto/ 1fr 1fr 1fr;
    margin: auto;
    border-style: dashed;
    border-color: coral;
    border-width: thick;
    background-color: rgb(250, 235, 215,.3);
    

}

.nav {
    text-align: center;
    padding: 10px;
    border-style: solid;
    border-radius: 10px;
    background-color:rgb(255, 245, 225);
    border-width: medium;
    border-color: coral;
    max-width: 80%;
    margin: 10px 20px;
    font-size: 2em;
    font-family: "Cherry Bomb One", monospace ;
    border-collapse: separate;
    overflow: hidden;
}


.bigsection {
    font-family: "Cherry Bomb One", monospace; 
    font-size: 3em;
    grid-column: 1 / span 3;
    margin: 20px auto 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
    flex: 1;
    width: 100%;
    background-color: rgb(255, 245, 225);

}

.blockimg {
    aspect-ratio: 1;
    display: block;
    border-style: none;
    border-radius: 20px;
    text-align: center;
    width: 40%;
    margin: 10px 20px;;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

@media (max-aspect-ratio: .8) {

    .gamelink {
        margin-top: 105vw;
    }

    .maingrid {
        width: 100vw;
    }

}


