@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Noto+Sans+KR:wght@100..900&display=swap');


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

html {
    font-size: 10px;
    font-family: "Noto Sans KR", sans-serif;
}

:root {
    --main-red: #ff3948;
    --main-green: #265b51;
    --backgrond-color: #f6f4ee;
}

body {
    font-size: 1.6rem;
    width: 100%;
    min-height: 100dvh;
    background-color: var(--backgrond-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;

    .content_wrapper {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5rem;
        .logo {
            object-fit: contain;
            width: 100%;
            max-width: 600px;
        }
        .coming {
            object-fit: contain;
            width: 100%;
            max-width: 600px;
        }

        h3 {
            font-family: "Aldrich", sans-serif;
            font-size: 3rem;
            text-align: center;
            color: var(--main-green);
        }
        .text_wrapper {
            width:100%;
            text-align: center;
            max-width: 800px;
            p {
                word-break: keep-all;
                b {
                    font-weight: bold;
                    color: var(--main-green);
                }
                &:first-child {
                    margin-bottom: 2em;
                }
            }
        }
    }
}


