@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;800&display=swap");
html {
  font-family: 'Manrope', sans-serif;
  color: aliceblue;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 800;
}

body {
  background: #1f2632;
}

body main {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .card {
  position: relative;
  background: #323a49;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 2em;
}

body .card h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #52ffa8;
  font-size: 0.8em;
}

body .card h4 span {
  margin-left: 0.5em;
}

body .card p {
  position: relative;
  font-size: 1.5em;
  color: #cee3e9;
}

body .card button {
  position: absolute;
  height: 50px;
  width: 50px;
  display: inline;
  border-radius: 100vh;
  background: url("/images/icon-dice.svg");
  background-color: #52ffa8;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  bottom: -20px;
}

body .card button:hover {
  cursor: pointer;
}

body .card .separator {
  margin-bottom: 2em;
}

@media (min-width: 376px) {
  body .card {
    width: 400px;
  }
}
/*# sourceMappingURL=style.css.map */