body {
	font-family: "Original Surfer", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #ffe552;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: #333;
}

main {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

small {
  font-size: 0.8em;
  margin-bottom: 1.5em;
}

a {
	color: #007bff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.title {
	position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  gap: 0.5em;
}

.title h1 {
  font-size: 5em;
  margin: 0;
}

.title p {
  margin: 0;
}

.title::before {
	content: "";
	position: absolute;
	background: #fd78ae;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	transform: skewX(-2deg) skewY(-3deg);
}

.buttons {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2em;
}

.button {
  position: relative;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1em;
  text-decoration: none;
  transition: transform 80ms ease-in-out;
}

.button::before {
	content: "";
	position: absolute;
	background: var(--bg-color);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	transform: var(--bg-skew);
  box-shadow: 10px 10px 0 0px #333;
}

.button:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.app-store-link {
  --bg-color: #2ed3cc;
  --bg-skew: skewX(1deg) skewY(3deg);
}

.google-play-link {
  --bg-color: #007bff;
  --bg-skew: skewX(2deg) skewY(-1deg);
}

.coming-soon {
  padding: 2em;
  transform: rotate(2deg);
  font-size: 2.2em;

  --bg-color: #9595fe;
  --bg-skew: skewX(1deg) skewY(1deg);
}

.coming-soon::before {
  box-shadow: none;
  /* border: 2px solid #333; */
}

dialog {
  appearance: none;
  padding: 2em;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}

dialog:focus,
dialog:focus-visible {
  outline: none;
  box-shadow: none;
}

::backdrop {
  background: rgba(0, 0, 0, 0.5);
}