@import url('https://fonts.googleapis.com/css?family=Cairo');

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

html {
  height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: linear-gradient(#031d2c, #000000);
}


#repeatButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;  
  border: none;
  background: url(https://andyhoffman.codes/random-assets/img/slots/repeat.png) transparent 0 0 no-repeat;
  background-size: cover;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 10px;
  right: 20px; 
  cursor: pointer;
  -webkit-animation: 6s linear infinite spin;
          animation: 6s linear infinite spin;
}
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

h1 {
    font-size: 115%;
    padding: 0.51em 1.05em;
    margin: 0.07em 0.05em;
    font-family: 'Cairo', sans-serif;
    /* border-block-end-style: initial; */
    /* top: 10%; */
    position: inherit;
    right: 0px;
    width: auto;
    /* border: 2px solid #003266; */
    padding: 11px;
    text-align: center;
}

h1 span {
    color: aliceblue;
      box-sizing: border-box;
    box-shadow: 0 15px 25px rgb(0 0 0 / 80%);
    border-radius: 5px;
    border: 2px solid hsl(208deg 100% 16% / 96%);
    padding: 0.1em 0.2em;
    background-color: #1d1e22;
    border-color: #c47400;
    border-style: double;
}

.icons { 
  display: inline-block;
  width: 128px;
  height: 564px;
  overflow: hidden;
  background: #fff url(https://i.imgur.com/b8vjUfF.png) repeat-y;
  will-change: backgroundPosition;
  transition: 0.3s background-position ease-in-out;
  padding: 0 80px;
  transform: translateZ(0);
}

.icons:nth-child(2) {
  margin: 0 10px;
}

* { box-sizing: border-box; }

.spinner-container {
    overflow: hidden;
    height: 632px;
    padding: 2em;
    transform: translate(-50%, -50%) scale(.62, .62);
    position: fixed;
    top: 66%;
    left: 51%;
    display: flex;
    transition: 0.3s transform;
}

.app-wrap.winner-false {
  -webkit-animation: linear 1s spin;
          animation: linear 1s spin;
}

.spinner-container::after {
    position: absolute;
    content: '';
    display: block;
    height: 169px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    left: 30px;
    background: #1d1e225c;
    /* border: azure; */
    border-color: #000000c9;
    border-style: inset;
}

.gradient-fade {
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
  background: linear-gradient(
    to bottom, 
    rgba(64,64,64,1) 0%, 
    rgba(64,64,64,0) 7%, 
    rgba(64,64,64,0) 93%, 
    rgba(64,64,64,1) 100%
  );
}

@media screen and (max-width: 1000px) {
  .spinner-container {
    transform: translate(-50%, -50%) scale(.55, .55);
  }
}

@media screen and (max-width: 500px) {
  .spinner-container {
    transform: translate(-50%, -50%) scale(.4, .4);
  }
}