* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100vw;
  min-height: 100vh;
  position: relative;
}

body,
input,
button {
  font-family: -apple-system, BlinkMacSystemFont, "Poppins", sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.container > .wrapper > .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.container.show {
  display: flex;
}

p {
  font-size: 18px;
}

button {
  padding: 12px 64px;
  border-radius: 16px;
  border: none;
  background: #C4D6EA;
  color: #007AFF;
  font-weight: 600;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  transition: color, background-color, box-shadow 150ms ease-in-out;
  cursor: pointer;
}
button.image {
  padding: 12px;
}
button.image img {
  width: 150px;
}
button:hover, button:focus {
  color: #fff;
  background-color: #007AFF;
}
button:focus {
  box-shadow: 0 0 0 5px #C4D6EA;
}/*# sourceMappingURL=styles.css.map */