* {
    margin: 0;
    padding: 0;
}

*, *:after, *:before  {
    box-sizing: border-box;
    user-select: none;
}

:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

html,
body {
    overflow: hidden;
}

html {
    font-size: calc(100vw / 1440 * 10);
    background: white;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    user-select: none;
}

body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
}



.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-heading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

.main-heading h1 {
    font-size: 10rem;
    font-weight: 500;
    line-height: 0.9;
    width: 100%;
    padding-left: 2rem;
}

.main-heading p {
    width: 100%;
    font-size: 2rem;
    padding-left: 2.5rem;
}

.main-heading button {
    font-size: 2rem;
    padding: 1rem 2rem;
    margin-left: 2.5rem;
    background: none;
    border: 1px solid black;
    border-radius: 5px;
    transition: background-color 150ms ease-in-out;
    cursor: pointer;
}

.main-heading button:hover {
    background-color: lightgray;
}

.demo__gallery {
    background: black;
    width: 100%;
    height: 153rem;
    overflow: hidden;
}

.demo__gallery__media {
    visibility: hidden;
    position: absolute;
    width: 36rem;
    height: 41.5rem;

    &:nth-child(1) {
        left: -21rem;
        top: -33rem;
    }

    &:nth-child(2) {
        left: 16.5rem;
        top: -33rem;
    }

    &:nth-child(3) {
        left: 54rem;
        top: -33rem;
    }

    &:nth-child(4) {
        left: 91.5rem;
        top: -33rem;
    }

    &:nth-child(5) {
        left: 129rem;
        top: -33rem;
    }

    &:nth-child(6) {
        left: -2.3rem;
        top: -7.8rem;
    }

    &:nth-child(7) {
        left: 35.3rem;
        top: -7.8rem;
    }

    &:nth-child(8) {
        left: 72.8rem;
        top: -7.8rem;
    }

    &:nth-child(9) {
        left: 110rem;
        top: -7.8rem;
    }

    &:nth-child(10) {
        left: -21rem;
        top: 17.7rem;
    }

    &:nth-child(11) {
        left: 16.5rem;
        top: 17.7rem;
    }

    &:nth-child(12) {
        left: 54rem;
        top: 17.7rem;
    }

    &:nth-child(13) {
        left: 91.5rem;
        top: 17.7rem;
    }

    &:nth-child(14) {
        left: 129rem;
        top: 17.7rem;
    }

    &:nth-child(15) {
        left: -2.3rem;
        top: 43.2rem;
    }

    &:nth-child(16) {
        left: 35.3rem;
        top: 43.2rem;
    }

    &:nth-child(17) {
        left: 72.8rem;
        top: 43.2rem;
    }

    &:nth-child(18) {
        left: 110rem;
        top: 43.2rem;
    }

    &:nth-child(19) {
        left: -21rem;
        top: 68.7rem;
    }

    &:nth-child(20) {
        left: 16.5rem;
        top: 68.7rem;
    }

    &:nth-child(21) {
        left: 54rem;
        top: 68.7rem;
    }

    &:nth-child(22) {
        left: 91.5rem;
        top: 68.7rem;
    }

    &:nth-child(23) {
        left: 129rem;
        top: 68.7rem;
    }

    &:nth-child(24) {
        left: -2.3rem;
        top: 94.2rem;
    }

    &:nth-child(25) {
        left: 35.3rem;
        top: 94.2rem;
    }

    &:nth-child(26) {
        left: 72.8rem;
        top: 94.2rem;
    }

    &:nth-child(27) {
        left: 110rem;
        top: 94.2rem;
    }
}

.demo__gallery__media__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
