.aboutme-content {
    display: grid;
    grid-template: "section section" auto "section section" auto "section section" auto "footer footer";
    grid-template-columns: 50% 50%;
    column-gap: 2em;
}

.aboutme-box {
    background-color: rgba(215, 239, 250, 0.84);
    border-radius: 0.75em;
    padding: 0.75em;
    font-size: 0.75em;
}

.aboutme-box div {
    width: 100%;
}

.movieimage {
    cursor: pointer;
    border: none; /* Removes default borders in older browsers */
    transition: transform 0.2s; /* Smooth effect for hover */
    width: 90px;
}

.movieimage:hover {
    transform: scale(1.4);
    z-index: 10;
}

.pokemon img {
    width: 4.25em;
    object-fit: contain;
}

.pokemon img:hover {
    transform: scale(2);
    z-index: 10;
}

.pmargin p {
    margin: 0.25em;
}

h2 {
    font-family: Director;
    margin-bottom: 0;
}

hr {
    height: 1px; background-color: black; border: none
}

button {
    font-family: Glacier-Regular;
}