* { margin: 0; padding: 0; } .waiting-message, .no-winner, .winner { align-items: center; color: white; display: flex; height: 100vh; justify-content: center; width: 100vw; position: absolute; top: 0; left: 0; font-size: 10vh; font-family: 'Helvetica Neue', helvetica, arial, sans-serif; font-weight: 600; } .michaelangelo { background-color: orange; } .donatello { background-color: purple; } .leonardo { background-color: blue; } .raphael { background-color: red; } .no-winner { background-color: silver; } .waiting-message { background-color: black; } /* Vue built-in transitions */ .fade-enter-active, .fade-leave-active { transition: opacity 1.5s } .fade-enter, .fade-leave-to { opacity: 0 }