*{
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body {
  background-color: black;
  background-image: url(./img/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;

  font-family: "Kanit";
}
.content {
  max-width: 35rem;
  min-height: 100vh;
  background-color: rgba(100, 100, 200, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 128px black, -24px 88px 0 rgba(155, 155, 255, 0.4);
  border-top-right-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: -12px;

  background-image: url(./img/skewer.webp);
  background-position: top center;
  background-repeat: no-repeat;

  color: white;

  font-size: 1.2rem;
}
.content * {
  max-width: 100%;
}

.description {
  position: relative;
}

.description::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  content: ">";
  color: rgba(255, 200, 200, 0.1);
  transform: translate(-24px, -50%);
  font-size: 8rem;
}

.buttonArray {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

.buttonArray button {
  flex: 1;
  flex-grow: 1;
}

button {
  font-size: large;
  font-family: "Kanit";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 1;

  padding: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 0;
  outline: 3px solid rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.2);

  background-image: url(./img/tri.webp);
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;

  transition: 0.1s;
}

button:hover {
  transform: scale(1.05);
  transition: 0.2s;
  box-shadow: 0 24px 0 rgba(255, 255, 255, 0.2);
}

button:active {
  transform: scale(1) translateY(24px);
  transition: 0.2s;
  box-shadow: none;
  outline-offset: 36px;
}

button.cta {
  background-color: rgba(0, 0, 100, 0.3);
  background-image: url(./img/triplay.webp);
}

button svg {
  display: inline-block;
  height: 1.5rem;
  filter: invert(1);
}

hr {
  border: 1px solid rgba(200, 200, 255, 0.1);
}

img.smooth {
  image-rendering: optimizeQuality;
}
img.logo {
  animation: logo 1s infinite linear;
  filter: drop-shadow(0 12px 0 rgba(0, 0, 0, 0.15));
}

a {
  color: aqua;
  transition: 0.1s;
  cursor: pointer;
}

a:hover {
  text-decoration: underline wavy;
  transform: scale(1.05);
  display: inline-block;
  text-shadow: 0 0 12px blue;
  transition: 0.1s;
}

a:active {
  transform: scale(1);
  transition: 0.1s;
}

@keyframes logo {
  0%,
  20%,
  35%,
  70%,
  85%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg) scale(0.98);
  }
  75% {
    transform: rotate(3deg) scale(0.98);
  }
}

@media screen and (max-width: 800px) {
  .buttonArray{
    flex-direction: column;
  }
  .buttonArray button {
    width: 100%;
  }
  .content {
    padding-left: 32px;
    padding-right: 32px;
    max-width: 85vw;
  }
}