span#title {
    /*
    font-family: 'Rubik Vinyl', cursive;
    */
    font-family: 'La Belle Aurore', cursive;
    text-decoration: underline;
}
header > p#title {
 font-size: 0.6rem;
 margin: 0;
 padding: 0;
}

button {
    color: #fff;
}

header {
    font-size: 4rem;
    text-align: center;
    background-color: rgb(19, 73, 93);
    padding: 1rem 0;
    color: white;
    margin-bottom: 1rem;
}
body {
    background-color: rgb(70, 120, 139);
    font-family: 'Raleway', sans-serif;
    color: #fff;
}
#slot-machine {
  font-size: 4rem;
  min-height: 16rem;
}
#stats {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  font-size: 1.6rem;
}
#notification {
    font-size: 2rem;
    text-align: center;
    min-height: 4rem;
}
.container {
  width: 100%;
}

.slot-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.winning-cell {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -gmoz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#controls {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

#controls button {
  font-size: 2rem;
   background-color: green;
   border-radius: 70%;
   padding: 1rem;
}