html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

@font-face {
  font-family: "century_Gothic";
  src: url("./assets/fonts/centuryGothicWGL.woff2") format("woff2"),
    url("./assets/fonts/centuryGothicWGL.ttf") format("ttf"),
    url("./assets/fonts/centuryGothicWGL.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* @font-face {
  font-family: "century_Gothic";
  src: url("./fonts/centuryGothic/centuryGothicWGLBold.woff2") format("woff2"),
    url("./fonts/centuryGothic/centuryGothicWGLBold.ttf") format("ttf"),
    url("./fonts/centuryGothic/centuryGothicWGLBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
} */

html {
  font-size: 62.5%;
}

body {
  width: 100vw;
  overscroll-behavior: none;
  overflow: hidden;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  font-size: 2rem;
  text-align: center;
}

html,
body,
p {
  font-family: "century_Gothic";
  color: black;
}

.loading {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dbf6ff;
  z-index: 99;
}

.loadingAnimation {
  -webkit-animation: load 1.2s ease-in forwards;
  -moz-animation: load 1.2s ease-in forwards;
  -o-animation: load 1.2s ease-in forwards;
  -ms-animation: load 1.2s ease-in forwards;
  animation: load 1.2s ease-in forwards;
}

@-webkit-keyframes load {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@-moz-keyframes load {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes load {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 20vw;
}

.content_div {
  position: relative;
  z-index: 4;
  height: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.content div a,
.content div a:hover,
.content div a:visited,
.content div a:active {
  color: black;
}

.content__title {
  font-size: 5.5rem;
  padding-bottom: 5.5rem;
}

.content__subtitle {
  font-weight: bold;
  padding-bottom: 3rem;
}

.mobileImg {
  height: 25vw;
  position: relative;
  z-index: 0;
}

hr {
  width: 90vw;
  position: absolute;
  left: 50%;
  top: 47.5%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 2px;
  background-color: lightgray;
  opacity: 0.2;
  border: none;
}

.qrCode {
  width: 10rem;
  height: 10rem;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
}

video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topBox,
.bottomBox {
  width: 100vw;
  height: 50vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 50);
  position: relative;
  pointer-events: none;
}

.textReveal {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tryAgain {
  pointer-events: all;
  display: none;
  background-color: #dbf6ff;
  box-shadow: -4px 4px #eee;
  color: black;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  z-index: 10;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  margin: 0 auto;
  margin-top: 3rem;
}

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

.textDeleteItem {
  -webkit-animation: deleteText 0.5s forwards;
  -moz-animation: deleteText 0.5s forwards;
  -o-animation: deleteText 0.5s forwards;
  -ms-animation: deleteText 0.5s forwards;
  animation: deleteText 0.5s forwards;
}

.textRevealItem {
  -webkit-animation: revealText 0.5s forwards;
  -moz-animation: revealText 0.5s forwards;
  -o-animation: revealText 0.5s forwards;
  -ms-animation: revealText 0.5s forwards;
  animation: revealText 0.5s forwards;
}

@-webkit-keyframes revealText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes revealText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes deleteText {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes deleteText {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

.topRetry {
  position: relative;
  display: none;
}

.message {
  width: 100vw;
  height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  display: none;
  background: #dbf6ff;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-animation: revealText 0.5s forwards;
  -moz-animation: revealText 0.5s forwards;
  -o-animation: revealText 0.5s forwards;
  -ms-animation: revealText 0.5s forwards;
  animation: revealText 0.5s forwards;
}

.vacio,
.full,
.segundoVacio,
.segundoFull,
.thirdFull,
.thirdVacio,
.down {
  display: none;
}

.axpe {
  font-size: 2.2rem;
  position: absolute;
  width: 100%;
  bottom: 5%;
  text-transform: uppercase;
}

.realidad {
  color: black;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 2rem 0;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 24%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.6rem;
}

@media screen and (max-width: 360px) {
  .realidad {
    font-size: 1.25rem;
  }
}

.feliz {
  font-size: 3rem;
  position: absolute;
  width: 100%;
  top: 9%;
}

.again {
  background-color: #fff;
  box-shadow: -4px 4px #eee;
  color: black;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  z-index: 10;
  width: fit-content;
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
