*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    isolation: isolate;
}

:root {
    --background-dark: #252728;
    --white: #fff;
    font-size: 16px;
}

body {
    font-family: "Montserrat", Arial, Helvetica Neue, Helvetica, sans-serif;
    width: 100%;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
}

.text-body-1 {
    font-size: 16px;
    font-weight: 400;
}

.text-body-2 {
    font-size: 14px;
    font-weight: 400;
}

.heading {
    font-size: 32px;
    font-weight: 600;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-dark);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.white-text {
    color: var(--white);
}

.explore-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.main {
    position: absolute;
    inset: 0;
    min-width: 100%;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-container {
    position: relative;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    max-width: 260px;
    left: 40px;
    gap: 40px;
}

@media (width >= 20rem) {
    .content-container {
        left: 20px;
    }
}

@media (width >= 30rem) {
    .content-container {
        max-width: 400px;
    }
}

@media (width >= 48rem) {
    .content-container {
        gap: 65px;
        left: 60px;
        max-width: 400px;
    }
}