.gloria-hallelujah-regular {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

.montserrat-regular> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: "Montserrat";
    color: white;
}

header {
    background-color: #1db180;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.logo {
    max-width: 80px;
    max-height: 80px;
}

header h1 {
    justify-self: right;
    margin-right: 20px;
    font-family: "Gloria Hallelujah";
}

nav {
    grid-row: 2/3;
    grid-column: 1/3;
    justify-self: center;
    display: flex;
    min-width: 100%;
    max-width: 1000px;
    justify-content: space-evenly;
    align-items: center;
}

a {
    font-family: "Montserrat";
    font-size: 1.3em;
}

body {
    max-width: 1200px;
    margin: auto;
    background-color: #080e0c;
}

#intro {
    margin-top: 75px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 250px 300px 150px;
    justify-content: center;
    align-content: center;
    text-align: center;
}

h2 {
    grid-column: 2/3;
    margin-bottom: 0px;
    font-size: 3em;
    font-family: "Gloria Hallelujah";
}

#intro p {
    grid-column: 1/4;
}

#intro img {
    grid-column: 4/5;
    max-height: 500px;
    grid-row: 1/4;
}

section {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: center;
    grid-template-rows: 1fr 1.5fr 1.5fr;
    place-items: center;
    gap: 30px;
    background-color: #1db180;
    padding: 2%;
    text-align: center;
}

section a {
    font-family: "Gloria Hallelujah";
    font-size: 2em;
}

section p {
    font-size: 1.5em;
}

section img {
   max-width: 100%;
   grid-row: 1/4;
}

.top-piece img {
    grid-column: 1/2;
}

.top-piece a{
    grid-row: 1/2;
    grid-column: 2/4;
}

.top-piece p {
    grid-row: 2/4;
    grid-column: 2/4;
}

.bottom-piece img {
    grid-column: 3/4;
}

.bottom-piece a{
    grid-row: 1/2;
    grid-column: 1/3;
}

.bottom-piece p {
    grid-row: 2/4;
    grid-column: 1/3;
}

footer {
    display: flex;
    align-content: center;
}

footer h3 {
    color: lightgrey;
    font-weight: 50;
}