body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-width: 100vw;
}

.middlebox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(700px, 90vw, 90vh);
  height: min(350px, 90vw, 90vh);
  background-color: #fff7e6;
  border-radius: min(10px, 2.5vw, 2.5vh);
  border: 3px solid #a35c00;
  flex-direction: column;
  gap: 10px;
}

.title {
  position: relative;
  display: grid;
  place-items: center;
  width: min(700px, 80vw);
}

.title span {
  grid-area: 1 / 1;
  font-family: 'Titan One', sans-serif;
  font-size: clamp(32px, min(8vw, 8vh), 72px);
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}

.title-shadow {
  transform: translate(
    clamp(2px, 0.4vw, 4px),
    clamp(2px, 0.4vw, 4px)
  );
  color: #a35c00;
  z-index: 1;
}

.title-main {
  z-index: 2;
  background: linear-gradient(
    to bottom,
    #fb8500,
    #ffb703,
    #ffe066
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

button {
  font-family: 'Titan One', sans-serif;
  font-size: min(25px, 5vw, 5vh);
  font-weight: 800;
  padding: 12px 18px;
  border: none;
  border-radius: min(8px, 1.6vw, 1.6vh);
  background-color: #ffb703;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 0 #a35c00;
}

button:hover {
  background-color: #fb8500;
}

button:active {
  transform: translateY(4px);
  box-shadow: 0 0px 0 #a35c00;
}

h2 {
  font-size: min(20px, 4vw, 4vh);
  font-weight: 800;
  font-family: 'Fredoka';
  width: 70%;
  text-align: center;
  color: #a35c00;
}