.title {
    background-color: black;
    width: 100vw;
    text-align: center;
    padding: 30px;
    color: white;
    font-size: 1.25em;
    margin-bottom: 5%;
    position: relative;
    box-sizing: border-box;
}

.title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 17px;
    background-image: url('zigzag.svg');
    background-size: 150px 20px;
    background-repeat: repeat-x;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
    margin-top: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

a { /* LINK STYLING */
    color: gray;
    text-decoration: none;
}

.grid-container {
    display: grid;
    background-color: white;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    width: 80%;
    margin: auto;
    border: 3px solid black;
    border-radius: 5px;
    padding: 25px;
}

@media (min-width: 800px) { /* MEDIA QUERY */
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(7, 1fr);
    }
    .title {
        font-size: 1.75em;
    }
}

.grid-item {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.15s ease-in-out;
    border: 0.0px solid red;
    min-height: 150px;
}
.grid-item:hover {
    transform: scale(1.1);
    max-width: ;
}

img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

footer{
    margin-top: 1.5%;
    margin-bottom: .5%;
    font-size: 1.25em;
}

p {
    text-indent: 1.5em;
}