@font-face {
    font-family: Poppins;
    font-weight: 200;
    font-display: swap;
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2');
}
@font-face {
    font-family: Poppins;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Poppins-Light.woff2') format('woff2');
}
@font-face {
    font-family: Poppins;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
}
@font-face {
    font-family: Poppins;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Poppins-Bold.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    font-family: Poppins, sans-serif;
    color: #fff;
}

h1 {
    line-height: 1.2;
    font-size: 2.8rem;
    font-weight: 200;
}
h1 strong {
    display: block;
    font-weight: 700;
}
p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
}
p a {
    color: #1cdfd6;
}

input, .button {
    display: block;
    border-radius: 0;
    padding: 12px;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
}

input {
    -webkit-appearance: none;
    appearance: none;
}

.button {
    border: 2px solid #1cdfd6;
    width: 150px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: #1cdfd6;
    cursor: pointer;
    transition: all .2s;
}
.button:hover {
    color: #1cdfd6;
    background-color: transparent;    
}
.button.light {
    border-color: #fff;
    color: #000;
    background-color: #fff;
}
.button.light:hover {
    color: #fff;
    background-color: transparent;
}

div[class^='section'] {
    position: relative;
}
div[class^='section'] picture, div[class^='section'] img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.text {
    position: relative;
    z-index: 1;
    padding: 60px 30px;
}

.section-1 {
    position: relative;
    height: 100vh;
    border-bottom: 8px solid #1cdfd6;
    background-color: black;
}
.section-1 video {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    object-fit: cover;
}
.section-1 > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.section-1 .logo {
    display: block;
    position: static;
    width: 80px;
    height: auto;
    margin: 15px 0;
}
.section-1 h1 {
    margin: 20px 0 15px;
    max-width: 70%;
}
.countdown {
    display: flex;
    justify-content: center;
    margin: 5px 0 30px;
}
.countdown div {
    margin: 0 10px;
    width: 50px;
}
.countdown span {
    display: block;
}
.countdown span:nth-child(1) {
    font-size: 4.5rem;
    font-weight: 200;
}
.countdown span:nth-child(2) {
    margin-top: -10px;
    font-size: 1.2rem;
    font-weight: 500;
}
.section-1 .button {
    margin: 0 auto;
}

.section-2, .section-4 {
    margin: 15px;
}
.section-3 .text {
    text-align: right;
}
.section-4 {
    border-bottom: 8px solid #1cdfd6;
}
div.section-4 picture, div.section-4 img {
    display: block;
    position: static;
}
.section-4 .text {
    padding: 30px;
    text-align: center;
    background-color: #272b34;
}
.section-4 p a {
    font-weight: 500;
    color: #fff;
}
.section-4 .button {
    margin: 30px auto 0;
}
.address-time {
    display: inline-block;
    margin: 10px 0;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;    
    font-size: 2rem;
    font-weight: 300;
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 2;
    inset: 0;
    background-color: rgba(0, 0, 0, .8);
}
.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    color: #000;
    background-color: #fff;
    display: none;
}
.modal.active {
    display: block;
}
.modal > div {
    padding: 30px;
}
.modal > div:first-child {
    position: relative;
}
.modal > div:first-child::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 1px;
    background-color: #000;
}
.modal h1 {
    margin-bottom: 15px;
}
input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 11px;
    border: 1px solid #1cdfd6;
}
input::placeholder {
    font-weight: 300;
    color: #000;
}
input:focus-visible {
    outline: none;
}
form .button {
    width: 100%;
}
form .button:disabled {
    cursor: not-allowed;
    opacity: .75;
}
.follow .button {
    margin-top: 15px;
}

.footer {
    padding: 45px 0;
    text-align: center;
    font-weight: 300;
    background-color: #272b34;
}
.footer p {
    height: 24px;
    line-height: 24px;
}
.footer p:nth-child(1) {
    font-size: 1.2rem;
}
.footer p:nth-child(2) {
    margin-top: 30px;
}
.footer a {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 15px;
    background: no-repeat center center / contain;
}
.footer a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer a::after {
    content: '';
    position: absolute;
    inset: -15px;
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 3.6rem;
    }
    p, input, .button {
        font-size: 1.6rem;
    }

    div[class^='section'] {
        padding-top: 0;
    }

    .section-1 h1 {
        margin-top: 60px;
    }
    .section-1 p {
        max-width: 600px;
    }
    .countdown div {
        margin: 0 30px;
        width: 90px;
    }
    .countdown span:nth-child(1) {
        font-size: 7rem;
    }
    .section-1 .button {
        margin-top: 30px;
    }
    div[class^='section'] .text {
        width: 50%;
        padding: 120px 45px;
    }
    .section-2, .section-4 {
        margin: 30px;
    }

    .section-3 .text {
        margin-left: 50%;
        text-align: right;
    }

    .section-2 .text, .section-4 .text {
        left: 0;
    }
    .section-4 .text {
        text-align: left;
    }
    .section-4 .button {
        margin: 30px 0 0;
    }
    .address-time {
        align-self: flex-start;
    }
    div.section-4 picture {
        position: absolute;
        left: 50%;
        width: 50%;
        height: 100%;
        object-fit: cover;
    }

    .modal.active {
        display: flex;
        width: 700px;
        min-height: 300px;
    }
    .modal::after {
        content: '';
        position: absolute;
        top: 45px;
        bottom: 45px;
        left: 50%;
        right: auto;
        width: 1px;
        background-color: #000;
    }
    .modal > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50%;
        padding: 45px;
    }
    .modal > div:first-child::after {
        display: none;
    }
    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .modal .follow {
        justify-content: flex-end;
    }

    .footer {
        position: relative;
    }
    .footer p:nth-child(1) {
        position: absolute;
        left: 75px;
        top: 50%;
        transform: translate(0, -50%);
    }
    .footer p:nth-child(2) {
        margin-top: 0;
    }
    .footer a {
        margin: 0 0 0 30px;
    }
}

@media only screen and (min-width: 1024px) {
    h1 {
        font-size: 5rem;
    }
    p, input, .button {
        font-size: 2rem;
    }
    .button {
        width: 240px;
    }
    div[class^='section'] .text {
        padding: 150px 60px;
    }

    .modal.active {
        width: 800px;
        min-height: 380px;
    }
    .modal::after {
        top: 60px;
        bottom: 60px;
    }
    .modal > div {
        padding: 60px;
    }
    .footer p:nth-child(1) {
        left: 90px;
    }
}

@media only screen and (min-width: 1600px) {
    h1 {
        font-size: 6.4rem;
    }
    p, input, .button {
        font-size: 2.5rem;
    }
    div[class^='section'] .text {
        padding: 270px 90px;
    }
    .section-1 .logo {
        width: 120px;
    }
    .countdown div {
        width: 120px;
    }
    .countdown span:nth-child(1) {
        font-size: 10rem;
    }
    .countdown span:nth-child(2) {
        font-size: 1.6rem;
    }

    .modal.active {
        width: 1000px;
        min-height: 560px;
    }
    .modal::after {
        top: 90px;
        bottom: 90px;
    }
    .modal > div {
        padding: 90px;
    }
    .footer a {
        width: 35px;
        height: 35px;
    }
}