* {
  box-sizing: border-box;
}

body {
  background-color: rgb(6, 0, 36);
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

.container {
  width: min(900px, 92%);
  text-align: center;
}

h1 {
  color: antiquewhite;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;

  font-size: clamp(64px, 18vw, 160px);
  margin: 0 0 24px;
}

button {
  font-size: clamp(16px, 2.5vw, 22px);
  padding: 12px 18px;
  border-radius: 10px;
  margin: 8px;
  color: antiquewhite;
  background-color: rgb(6, 91, 91);
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: rgb(43, 172, 129);
}

.butn {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
