header>h2 {
    display: flex;
    gap: 0.2em;
}

header>h2 a {
    align-self: center;
    display: grid;
}
.project-images {
    width: 100%;
    padding: 0.5em;
    background-color: var(--surface-container-4);
    border-radius: 1em;
}

.project-images .images-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1em;
    width: 100%;
    justify-items: center;
    max-width: 800px;
    margin: auto;
}

.project-images .images-container img {
    border-radius: 1em;
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width: 550px) {
    .project-images .images-container img:nth-child(3) {
            display: none;
    }
}