@font-face {
    font-family: 'LOTTERIACHAB';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/LOTTERIACHAB.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    /* width: 100%; */
    box-sizing: border-box;
    height: 100vh;
    background: url("..//img/앨리스배경.jpg")no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    padding-bottom: 100px;
}

#who {
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: 400px;
}

#who span {
    opacity: 0;
    animation: show 2s ease-in-out;
    animation-fill-mode: both;
}

#who span:first-child {
    animation-delay: 1s;
}

#who span:nth-child(2) {
    animation-delay: 2s;
}

#who span:last-child {
    animation-delay: 3s;
}

#img {
    display: flex;
    align-items: center;
    /* margin-bottom: 500px; */
}

#input-user {
    opacity: 0;
    height: 300px;
    text-align: center;
    animation: show 2s ease-in-out;
    animation-delay: 4s;
    animation-fill-mode: both;
}

#input-user input {
    width: 150px;
    height: 35px;
    background: transparent;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 1;
    border-color: #82B3FF;
    color: white;
    font-size: 30px;
}

span {
    font-family: LOTTERIACHAB;
    font-size: 3em;
    color: whitesmoke;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}