* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: #ffffff;
    color: #000000;
  font-family: "ltr-ncnd-variable", sans-serif;
font-variation-settings: "wght" 250;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4.8vh 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
   font-size: 1.65vw;
    z-index: 10;
}

.header-left {
    display: flex;
    gap: 0.9vw;
    align-items: center;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.5;
}

main {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    transform: translateY(-1.5vh);
}

#main-image {
    display: block;
    max-width: 64vw;
    max-height: 73vh;
    width: auto;
    height: auto;
    cursor: pointer;
}

.custom-cursor {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    font-family: "ltr-ncnd-variable", sans-serif;
    font-variation-settings: "wght" 250;
    font-size: 1.5vw;
    z-index: 100;
    display: none;
}

.information-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
}

.information-background {
    position: absolute;
    top: -6vh;
    left: 0;
    width: 100%;
    height: 106%;
    object-fit: cover;
    z-index: 0;
}

.information-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 4.5vh 4vw;
    font-size: 1.65vw;
}

.information-top {
    line-height: 1.25;
}

.information-name {
    display: block;
}

.information-location {
    margin-top: 5vh;
}

.information-links {
    position: absolute;
    left: 4vw;
    top: 43vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.information-links a,
.information-links button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.information-links a:hover,
.information-links button:hover {
    opacity: 0.5;
}

/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 768px) {

    header {
    padding: 3vh 4vw;
    font-size: 4vw;
    align-items: flex-start;
    }

    .header-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5vw;
    width: 72%;
    }

    #home-link {
    flex-basis: 100%;
    margin-bottom: 0.4vh;
    }

    #counter {
    margin-top: 0.6vh;
    }

    #project-title {
    margin-top: 0.6vh;
    }

    #information {
    white-space: nowrap;
    margin-left: auto;
    }

    main {
        height: 100svh;
        transform: none;
        padding: 0 5vw;
    }

    #main-image {
        max-width: 90vw;
        max-height: 68svh;
        width: auto;
        height: auto;
    }

    .custom-cursor {
        display: none !important;
    }

    .information-content {
    padding: 3vh 5vw;
    font-size: 4.2vw;
}

.information-location {
    margin-top: 6vh;
}

.information-links {
    left: 5vw;
    top: 38vh;
}
}
@media (max-width: 768px) {

    #main-image.mobile-landscape-crop {
        width: 90vw;
        height: 135vw;
        max-width: none;
        max-height: none;
        object-fit: cover;
        object-position: 63% center;
    }

    body.notes-from-the-south-page #main-image.mobile-landscape-crop {
        object-position: 40% center;
    }
    body.in-the-midst-page #main-image.mobile-landscape-crop {
    object-position: 45% center;
    }

}