
body {
    background-color: #333;
    font-family: 'Roboto', sans-serif;
}

#container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#wait {
    color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.fav {
    color: #42a2fc;
    animation: fav .8s;
    z-index: 1;
    position: absolute;
}

@keyframes fav {
    0% {
        opacity: 0.8;
        /* アイコンサイズをもとのより小さくする */
        transform: scale(0.5);
    }
    10% {
        transform: scale(0.7);
    }
    30% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(1.5);
    }
    100% {
        opacity: 0.0;
        /* もとのサイズに戻す */
        transform: scale(1.0);
    }
}