
.spinner {
    width: 50px;
    height:50px;
    border: 5px solid white;
    border-top: 5px solid lightblue;
    border-radius:50%;
    animation:spin 1s linear infinite;
    display: none;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    50% { transform:rotate(180deg); }
    100% { transform: rotate(300deg); }
}

#emoji-load {
    display:flex;
    flex-direction:row;
    margin-right:90%;
}

#emoji {
    font-size:100px;
}