body {
    position: relative;
    justify-content: center;
    align-items: end;
    height: 100vh;
    margin: 0;
}

body *::selection {
    background: #00f;
    color: #ffffff;
}

h1, h2, h3 {
    font-family: "owners", sans-serif;
    font-weight: 500;
    font-style: normal;
}

a, p {
    font-family: "owners-text", sans-serif;
    font-size: 20px;
    font-weight: 100;
}

a {
    text-decoration: none;
}

h1 {
    display: inline-block;
    font-display: swap;
    font-size: 50px;
    margin: 0 0 0 0;
}

h2 {
    font-size: 50px;
}

nav {
    display: flex;
    flex-direction: row;
    height: 60px;
    margin: 0 calc(2.5vw + 50px);
    align-items: end;
}

nav a {
    color: #fff;
    margin: 0 40px 10px 0;
    text-decoration: none;
    opacity: .2;
}

section {
    padding: 20vh 10vw;
}

footer {
    padding: 0 10vw 5vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer a, footer a:visited {
    color: #000;
}

section#introduction {
    background-color: #000000;
    color: #fff;
    display: flex;
    padding: 0 0;
    min-height: 100vh;
    align-items: center;
}

#img-video, #img-photo, #img-dj {
    position: absolute;
    width: calc(100vw / 3);
    margin: 10vw 10vh;
    opacity: 0;
    scale: 1.05;
}

#img-video {
    top: 0;
    left: 0;
}

#img-photo {
    bottom: 0;
    left: calc(100vw / 2 - (100vw / 3));
}

#img-dj {
    top: 0;
    right: 0;
}

.horizontal-scroll {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.scroll-content {
    display: flex;
    gap: 10px;
    font-size: 3rem;
    position: relative;
    width: 300vw; /* Adjust based on content */
    align-items: center;
}

.scroll-content .text {
    font-family: "owners", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    mix-blend-mode: darken;
}

.scroll-content img {
    display: inline;
    height: 200px;
}
#txt-hi {
    width: 100vw;
    text-align: center;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    padding: 0;
    /*background-color: brown;*/
    width: fit-content;
    gap: 1rem;
}

.project {
    margin: 0;
    /*border: 3px solid #000;*/
    /*box-shadow: 3px 3px 8px 0px rgba(0,0,0,0.3);*/
    width: 35vw;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    opacity: 0.6;
}
section#about img {
    width: 100%;
    max-width: 500px;
}
.project-info {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    color: #000;
    border-radius: 15px;
    width: 90vw;
    max-width: 300px;
}

.h {
    display: flex;
    flex-direction: row;
}

.v {
    display: flex;
    flex-direction: column;
}

.p {
    padding: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    position: relative;
    color: #000;
    margin: 10px 0;
}

.social-link span {
    margin: 0 0 0 10px;
    font-weight: 500;
}

.social-link .underline {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: calc(1px + 0.6vw);
    background-color: red;
}

@media (max-width: 600px) {
    .h {
        flex-direction: column;
    }

    .scroll-content .text {
        font-size: 30px;
    }
}