@font-face {
  font-family: "Oswald";
  src: url("/assets/Oswald.ttf");
}
* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  background: #fac4a0;
  overflow: hidden;
}

.main {
  position: absolute;
  inset: 40px;
  background: #d72e41;
  overflow-y: auto;
  scrollbar-width: thin;
  padding: 50px 10px;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .main {
    inset: 20px;
  }
}

.content {
  position: relative;
}

.main-logo, .sandwich, .tag {
  max-width: 100%;
}

.main-logo {
  width: 850px;
}

.sandwich {
  width: 550px;
  margin-bottom: 60px;
}
@media screen and (max-width: 830px) {
  .sandwich {
    width: 360px;
  }
}
@media screen and (max-width: 600px) {
  .sandwich {
    width: 200px;
  }
}

.tag {
  position: fixed;
  top: 400px;
  left: 400px;
  animation-fill-mode: forwards;
  opacity: 0;
  width: 250px;
  pointer-events: none;
}

audio {
  width: 500px;
  max-width: 90%;
}

@keyframes tag-animation {
  0% {
    transform: scale(0) rotate(-28deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(0) rotate(28deg);
  }
}
h2 {
  font-weight: 100;
  margin: 0;
  font-size: 50px;
}
@media screen and (max-width: 830px) {
  h2 {
    font-size: 30px;
  }
}

h1, h2, p {
  font-family: "Oswald", sans-serif;
}

.hide {
  position: absolute;
  top: 100px;
  pointer-events: none;
  opacity: 0;
}