body {
    display: grid;
    grid-template-areas:
    "nav nav nav nav"
    "head head head head"
    ". thing0 thing0 ."
    "thing1 thing1 thing2 ."
    "foot foot foot foot";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
}

.thing0 {
    grid-area: thing0;
    border-radius: 25px;
    opacity: 0.7;
}

.thing1 {
    grid-area: thing1;
    background-color: rgb(183, 222, 255);
    border-radius: 25px;
    padding: 25px;
}

.thing2 {
    grid-area: thing2;
    background-color: rgb(183, 222, 255);
    border-radius: 25px;
    padding: 25px;
}

.head {
    grid-area: head;
}

nav {
    grid-area: nav;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    background-color: rgb(156, 245, 255);
    opacity: 0.9;
    padding: 5px;
    border-radius: 20px;
}

h2 {
    font-size: xx-large;
    text-align: center;
    color: white;
    filter: drop-shadow(2px 2px 0px rgb(0,204,255));
}

div {
    grid-area: thing1;
    border-radius: 50px;
}

p {
    color: blueviolet;
    text-align: center;
    font-size: large;
}

a:hover {
    background-color: rgb(243, 163, 255);
    border-radius: 20px;
    transform: scale(1.25);
    transition: all 0.25s ease-in-out;
}

#montserrat-alternates-regular {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.indie-flower-regular {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

.bonbon-regular {
  font-family: "Bonbon", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    background-image: repeating-radial-gradient(rgb(0,22,161),rgb(0, 106, 227),rgb(183, 0, 255),rgb(123, 0, 145));
}

fieldset {
    background-color: rgb(90, 0, 155);
}

input:required {
    background-color: rgb(153, 241, 255);
    opacity: 0.9;
}

label,legend {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 100px;
    padding: 5px;
}

input {
    border-radius: 25px;
    padding: 5px;
}

input[type="submit"]:hover {
    cursor: pointer;
    background-color: rgb(168, 233, 255);
}

footer {
    grid-area: foot;
    color: white;
    text-align: center;
    background-color: black;
    border-radius: 25px;
}

@media screen and (max-width:410px) {
    body {
        grid-template-areas:
        "nav"
        "head"
        "thing0"
        "thing1"
        "thing2"
        "foot";
    }
}