section:not(.top) {
    padding: 60px 20px;
    min-height: 100dvh;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 800px;
    width: 100%;
    z-index: 1;
    aspect-ratio: 800 / 515;
    padding: 50px;
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    color: #000;
}

div:has(.container) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 800px;
}

div:has(.container) .nav-arrows {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    image-rendering: pixelated;
    z-index: 0;
}

section h2,
section h3:not(.bookmark h3) {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 0 #000;
    font-size: 2rem;
}

section h3:not(.bookmark h3) {
    font-size: 1.25rem;
    /* margin-bottom: 30px; */
    text-shadow: 1.5px 1.5px 0 #000;
}

.container p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.container strong {
    color: #55ff55;
}

#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

#projects>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#projects>div>div {
    max-width: 350px;
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#projects>div>div>img {
    width: 100%;
    image-rendering: pixelated;
    position: absolute;
    top: 0;
    left: 0;
}

#projects>div>div>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#projects>div>div>a>img {
    max-width: 175px;
    width: 100%;
    image-rendering: pixelated;
}

#projects .hoverFrame {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

#projects>div>div:hover .hoverFrame {
    opacity: 1;
}