@import url("fonts.css");

* {
    box-sizing: border-box;
}

body.easter-egg-page {
    display: flex;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
    background: #fff;
    color: #111;
    font-family: "Albert Sans", "NanumSquareRound", sans-serif;
}

.coming-soon {
    display: flex;
    min-height: 70vh;
    padding: 72px 24px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.footer {
    position: relative;
    display: flex;
    padding: 16px 20px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #555;
    font-size: 14px;
}

.footer::before {
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    height: 1px;
    background: #dadada;
    content: "";
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    color: #777;
    font-size: 24px;
}

@media (max-width: 560px) {
    .footer {
        gap: 14px;
        flex-direction: column;
    }
}
