* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    font-family: 'OpenSans', sans-serif;
    min-height: 100vh;
    background-color: white;
    color: black;
    padding-top: 50px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 7%;
    background: white;
    z-index: 1000;
}

.header-gallery {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: black;
}

.content {
    padding-left: 7%;
    padding-right: 7%;
}

.line-1 {
    font-size: 8.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.05em;
    color: black;
}

.full-width-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 20px;
    position: relative;
}

.full-width-image picture,
.full-width-image img {
    width: 100%;
    display: block;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 7%;
    padding-top: 40px;
    pointer-events: none;
}

.line-2 {
    color: white;
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
    margin-bottom: 0.2em;
}

.line-3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2em;
    padding-left: 0.3em;
    white-space: normal;
    max-width: 90%;
}

.line-4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: none;
    margin-top: 0.4em;
    padding-left: 0.3em;
    white-space: normal;
}

@media (max-width: 1200px) {
    .header, .content {
        padding-left: 5%;
        padding-right: 5%;
    }
    .line-1 {
        font-size: 5.5rem;
    }
    .text-overlay {
        padding-left: 5%;
    }
    .line-2 {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {
    .line-2 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .header, .content {
        padding-left: 4%;
        padding-right: 4%;
    }
    .line-1 {
        font-size: 4rem;
    }
    .text-overlay {
        padding-left: 4%;
        padding-top: 25px;
    }
    .line-2 {
        font-size: 3.8rem;
        white-space: nowrap;
    }
    .line-3 {
        font-size: 1rem;
        max-width: 92%;
    }
    .line-4 {
        font-size: 1rem;
        margin-top: 0.3em;
    }
}

@media (max-width: 576px) {
    .line-2 {
        font-size: 3rem;
    }
    .text-overlay {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .header, .content {
        padding-left: 3%;
        padding-right: 3%;
    }
    .line-1 {
        font-size: 3rem;
    }
    .text-overlay {
        padding-left: 3%;
        padding-top: 20px;
    }
    .line-2 {
        font-size: 2.5rem;
    }
    .line-3 {
        font-size: 0.9rem;
    }
    .line-4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .line-2 {
        font-size: 2rem;
        letter-spacing: 0.01em;
    }
}