html {
  overflow: hidden;
}

body {
  background: white;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.opacity-0 {
  opacity: 0;
}

.tattoo_app_layout {
  height: 99svh;
  width: 98svw;
  overflow-y: auto;
  overflow-x: hidden;
}

.tattoo_app_content {
  max-width: 480px;
  min-width: 360px;
  padding: 1% 10%;
}

.tattoo_app_padding {
  padding: 0 7%;
}

.tattoo_app_title {
  font-size: 2rem;
  font-weight: 600;
  margin: 1.5em 0 0.5em 0;
  letter-spacing: 0.01rem;
}

.tattoo_app_title_description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1.3em;
  line-height: 1.3rem;
  letter-spacing: 0.01rem;
}

.tattoo_app_footer_title {
  font-size: 1.2rem;
  font-weight: 600;
}

.tattoo_app_footer_description {
  font-size: 0.9rem;
  font-weight: 300;
}

.tattoo_app_store_link {
  width: 150px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.tattoo_app_iphone_container {
  height: 670px;
  margin-bottom: 1.2em;
}

.tattoo_app_video {
  height: 645px;
}

.tattoo_app_iphone_frame {
  height: 670px;
}

@media screen and (min-width: 480px) {
  html, body {
    height: 100vh;
  }

  .tattoo_app_layout {
    height: 98vh;
  }

  .tattoo_app_iphone_container {
    height: 850px;
  }

  .tattoo_app_video {
    height: 815px;
  }

  .tattoo_app_iphone_frame {
    height: 850px;
  }

  .tattoo_app_store_link {
    width: 198px;
  }
}
