*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --headerHeight: 6vh;
}

img,
picture,
svg {
    max-width: 100%;
    display: block;
}

html {
    overscroll-behavior: none;
}

body {
    font-family: "Helvetica Neue";
    background-color: #ABDCFD;
}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
    align-items: center;
    background-color: white;
    height: var(--headerHeight);
    padding-inline: 1rem;
    position: sticky;
    top: 0;
    left: 0;
}

.logo img {
    height: calc(var(--headerHeight) - 1rem);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.4rem;
}

.wrapper {
    width: 100vw;
    height: calc(100svh - var(--headerHeight));
    display: flex;
    overflow-y: scroll;
    overscroll-behavior: none;
}
@media screen and (width < 600px) {
    .wrapper {
        flex-direction: column;
    }
}

.left,
.right {
    flex: 1;
    height: calc(100svh - var(--headerHeight));
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    overscroll-behavior: none;
}
.left::-webkit-scrollbar,
.right::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

.left > section,
.right > section {
    height: 100%;
}

.left > section img,
.right > section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.right > section img {
    mix-blend-mode: multiply;
}

.projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
}

.projects ul {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
}

.projects ul li {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    font-size: 4.5vw;
    margin-bottom: -1vw;
}

.projects a {
    display: contents;
}

.project_header {
    display: flex;
}
@media screen and (width < 600px) {
    .project_header {
        flex-direction: column;
    }
}

.project_header div:first-child {
    background-color: #00C066;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project_header div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.project_header > div {
    flex: 1;
}

.project_header div:first-child h1 {
    font-size: 7rem;
    font-weight: inherit;
    padding: 1.5rem;
}
.project_header div:first-child p {
    font-size: 1.5rem;
    font-weight: inherit;
    padding: 1.5rem;
}

.images {
    background-color: lightgray;
    display: flex;
    gap: 1rem;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00C066;
}

.map > div {
    flex: 1;
}


.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.map > div:last-child {
    display: grid;
    justify-content: center;
}

.map > div:last-child p {
    font-size: 5rem;
}
@media screen and (width < 600px) {
    .images,
    .map {
        flex-direction: column;
    }
    .map > div:last-child {
        padding: 1rem;
        justify-content: start;
    }
    .map > div:last-child p {
        font-size: 3rem;
    }
}

.shuffle_button {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: yellow;
    padding: 2rem;
    z-index: 1000;
}