@font-face {
    font-family: 'Wittgenstein';
    src: url('/Wittgenstein-Regular.woff2') format('woff2'),
        url('/Wittgenstein-Regular.woff') format('woff'),
        url('/Wittgenstein-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wittgenstein';
    src: url('/Wittgenstein-Bold.woff2') format('woff2'),
        url('/Wittgenstein-Bold.woff') format('woff'),
        url('/Wittgenstein-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    background-color: #f2f2f2;
    font-family: 'Wittgenstein';
    background: linear-gradient(180deg, #EBE2F3 0%, #FAF5DF 100%);
    padding: 0 15px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.logo {
    max-width: 400px;
    margin: 40px auto;
}

.come-soon {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 90px;
    font-weight: 700;
    line-height: 120px;
}

.sub-text {
    margin-top: 20px;
}

p {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
}

a {
    margin-top: 20px;
}

a button {
    background: #1A1C1F;
    color: #ffffff;
    border: 2px solid #1A1C1F;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

a button:hover {
    background: transparent;
    color: #1A1C1F;
}

@media(max-width:1024px) {
    h1 {
        font-size: 50px;
        line-height: 70px;
    }

    .sub-text {
        margin-top: 16px;
    }

    .logo {
        margin: 30px auto;
    }
}

@media(max-width:425px) {
    p br {
        display: none;
    }

    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .sub-text {
        margin-top: 10px;
    }

    p {
        font-size: 20px;
        line-height: 28px;
    }

    .logo {
        margin: 24px auto;
    }
}