@charset "UTF-8";

/* CSS Document */

/** google font IBM Plex Sans KR */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&display=swap');

html body {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans KR', sans-serif;
    background-color: #575923;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F0;
    color: #0D0D0D;
    width: 63vw;
    height: 50vh;
}

@media (orientation: portrait) {
    .center {
        width: 90vw;
        height: 95vh;
        flex-direction: column;
    }
}

.image {
    height: 90%;
}

.text__wrap {
    width: 50%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3%;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

#countdown__wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.countdown {
    font-size: 2vw;
    font-weight: 700;
}

.items {
    margin-left: 1vh;
    color: #575923;
}

@media (orientation: portrait) {
    .countdown {
        font-size: 4vw;
        font-weight: 800;
    }

    .items {
        margin: 0 0.5rem;
    }

    .text__wrap {
        width: 90%;
        margin: 0;
    }
}


#canvas-wrap {
    position: relative;
}