@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

html,
body {
    height: 100%;
    width: 100%;
}

main {
    position: relative;
}

.topLiner {
    position: absolute;
    top: 10%;
    width: 8vw;
    height: auto;
}

.bottomLiner {
    position: absolute;
    bottom: 5%;
    right: 0%;
    width: 8vw;
    height: auto;
}

.ComingSoonMain {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ComingSoonMain img {
    width: 25vw;
    height: auto;
}

.ComingSoonMain h1 {
    font-size: 2.7vw;
    font-weight: 700;
    line-height: 3.2vw;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #374150;
    margin-top: 1vw;
}

.ComingSoonMain button {
    margin-top: 1vw;
    font-size: 1.04vw;
    font-weight: 600;
    line-height: 1.6vw;
    letter-spacing: 0.20000000298023224px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 0.5vw 1vw;
    background-color: #FF5015;
    border: none;
    border-radius: 1.2vw;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ComingSoonMain button:hover {
    background-color: #D3430F;
}

@media (max-width: 600px) {

    .topLiner {
        position: absolute;
        top: 10%;
        width: 8vh;
        height: auto;
    }

    .bottomLiner {
        position: absolute;
        bottom: 15%;
        right: 0%;
        width: 8vh;
        height: auto;
    }

    .ComingSoonMain {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .ComingSoonMain img {
        width: 25vh;
        height: auto;
    }

    .ComingSoonMain h1 {
        font-size: 2.7vh;
        font-weight: 700;
        line-height: 3.2vh;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #374150;
        margin-top: 1vh;
    }

    .ComingSoonMain button {
        margin-top: 1vh;
        font-size: 1.04vh;
        font-weight: 600;
        line-height: 1.6vh;
        letter-spacing: 0.20000000298023224px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        padding: 0.5vh 1vh;
        background-color: #FF5015;
        border: none;
        border-radius: 1.2vh;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .ComingSoonMain button:hover {
        background-color: #D3430F;
    }
}