* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

button {
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background-color: #be123c;
  color: white;
  transition: 0.2s ease-in-out;
  margin-block: 10px 20px;
}
button:hover {
  outline: 1px solid #be123c;
  color: #be123c;
  background: transparent;
}

.wrapper {
  max-width: 1100px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=main.css.map */