@import url("/fonts/noto-sans-condensed.css");
@import url("/fonts/noto-sans-hebrew-condensed.css");
@import url("/fonts/noto-sans-thai-condensed.css");
@import url("/fonts/noto-sans-myanmar.css");

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

html, body {
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-color: #f7efe3;
    font-family: Noto Sans Condensed;
    color: #5f5f74;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (prefers-color-scheme: dark) {
        background-color: #4f4f60;
        color: #c7f2f8;
    }
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    max-width: 790px;
}

.coming-soon img {
    width: 100%;
    max-width: 790px;
    height: auto;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.5rem;
}

