.main {
    display: flex; 
    align-items: center;
    justify-content: center;
    margin: auto;
    font-family: 'Wanted Sans Variable';
    height: calc(100vh - 50px);
    /* padding-top: 50px; */
}

.onCenter {
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin: auto;
    width: fit-content;
    justify-content: center;
}

.onCenter .line {
    width: 1px;
    height: 1px; /*80px*/
    background: rgba(255, 255, 255, 0.1);
    transition: height 1s ease-in-out;
}

.onCenter img {
    width: 80px;
    margin-bottom: 50px;
    opacity: 0;
    transition: all 1.8s ease-in-out;
}

.messages {
    margin-left: 10px;
    width: fit-content;
    margin-top: 50px;
    opacity: 0;
    transition: all 1s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: white;
    font-family: '경기천년체';
    font-size: 24px;
    font-weight: 700;
    filter: blur(10px);
}

.messages > * {
    margin: 0;
}

/*반응형*/
@media screen and (max-width: 670px) {
    .messages > * {
        margin: 0;
    }

    .messages {
        flex-direction: column;
    }
}

@media screen and (max-height: 670px) {
    .main {
        padding-top: 50px;
    }
}