body {
    display: grid;
    grid-template-areas: 
        "nav nav nav nav"
        ". evil evil ."
        "e1 e2 e3 e4"
        ". num num ."
        "foot foot foot foot";
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 20% 10% 20% 20% 2%;
}

.nav {
    grid-area: nav;
    background-color: black;
    color: white;
    opacity: 0.8;
    padding-bottom: 0%;
}

.evil {
    grid-area: evil;
    background-color: white;
    border-radius: 25px;
    color: black;
}

.e1 {
    grid-area: e1;
}

.e2 {
    grid-area: e2;
}

.num {
    grid-area: num;
    transform: translate(-90px, 700px);
}

.foot {
    grid-area: foot;
    margin-top: auto;
    transform: translate(0px, 800px);
}

body {
    background-image: linear-gradient(to right, #ffce50 ,#ff57e3, #3f27ff);
}

h2 {
    font-size: 60px;
    text-align: center;
}

a {
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-size: 40px;
    text-decoration: none;
    width: 0%;
}

a:hover {
    background-color: rgb(0, 3, 182);
    border-radius: 20px;
    transform: scale(1.1);
    transition: all 0.25s ease-in-out;
}

footer {
    color: white;
    background-color: black;
}

p {
    font-size: 20px;
    background-color: rgb(255, 0, 123);
    border-radius: 20px;
    color: white;
    text-align: center;
    padding: 20px;
}

img {
    background-color: white;
    border-radius: 20px;
}

h1 {
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
}

.sixtyfour-convergence-heh {
  font-family: "Sixtyfour Convergence", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0,
    "XELA" 0,
    "YELA" 0;
}

.pixelify-sans-meow {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.dotgothic16-regular {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

ul li a {
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li {
  float: left;
}

#gross {
    border-radius: 5px;
    margin-left: 35%;
}

@media screen and (max-width:640px) {
    body {
        display: grid;
        grid-template-areas: 
        "nav"
        "evil"
        "e1"
        "e2"
        "e3"
        "e4"
        "e5"
        "e6"
        "e7"
        "e8"
        "num"
        "foot";
        grid-template-columns: 100%;
        grid-template-rows: 5fr;
    }

    p{
        font-size: 30px;
    }
}