:root {
    --bg-color: #000;
    --text-color: #fff;
    --h-1: clamp(1.95rem, 17.93vw + -1.63rem, 12.7rem);
    --h-2: clamp(1rem, 0.7287rem + 1.3564vw, 1.813rem);

}

@font-face {
    font-family: 'HelveticaRegular';
    src: url('HelveticaRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
li {
    list-style: none;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

body {
    font-family: 'HelveticaRegular', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
}



.wrapper {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.nav {
    display: flex;
    justify-content: space-between;
}

.content-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    gap: 10vh;
}


.comingsoon h1 {
    font-size: var(--h-1);
    line-height: 0.8em;
    letter-spacing: -3px;
    white-space: nowrap;
}

.footer {
    display: grid;
    grid-template-columns: repeat(2, auto);
    margin-right: auto;
    gap: 9vw;
}

.footer-item {
    font-size: var(--h-2);
}

@media screen and (max-width:500px) {
    .footer {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .content-wrapper {
        margin-right: auto;
        align-items: flex-start;
        margin: 0;
    }
}