@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700');
body {
  min-width: 320px;
  overflow-x: hidden;
}
#canv {
  position: absolute;
  top: 0;
  z-index: 9;
}
@media all and (max-width: 1024px) {
  #canv {
    display: none;
  }
}
.container {
  color: white;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-width: 320px;
  min-height: 100vh;
  min-width: 100vw;
}
@media all and (max-width: 768px) {
  .container {
    background-position: 40% 100%;
  }
}
.info__logo {
  margin-bottom: 30px;
  margin-top: 60px;
}
.info__logo img {
  max-width: 100%;
  height: auto;
}
.info-wrapper {
  position: relative;
  z-index: 999;
  max-width: 1480px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
}
@media all and (max-width: 1280px) {
  .info-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.info {
  text-align: center;
  max-width: 600px;
  margin-bottom: 50px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .info {
    margin-top: 100px;
  }
}
@media all and (min-width: 1200px) {
  .info {
    max-width: 768px;
  }
}
@media all and (max-width: 768px) {
  .info {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 768px) and screen and (-ms-high-contrast: active), all and (max-width: 768px) and (-ms-high-contrast: none) {
  .info {
    margin-top: 15px;
  }
}
.info__text {
  font-family: "alex";
  color: white;
  font-size: calc(12px + 2 * ( 100vw / 100));
  margin-bottom: 15px;
}
@media all and (max-width: 768px) {
  .info__text {
    font-size: 30px;
  }
}
.info__title {
  font-family: "navidad";
  color: white;
  font-size: 80px;
  font-size: calc(14px + 4 * ( 100vw / 100));
  font-weight: bold;
  letter-spacing: 3px;
}
@media all and (max-width: 768px) {
  .info__title {
    font-size: 40px;
  }
}
.info__subtitle {
  font-family: "cinzel-bold";
  color: white;
  font-size: 46px;
  font-size: calc(14px + 2 * ( 100vw / 100));
  margin-bottom: 30px;
}
@media all and (max-width: 768px) {
  .info__subtitle {
    font-size: 26px;
  }
}
.info__code {
  padding: 10px;
  background: #F2E9DC;
  border-radius: 15px;
  display: table;
  margin: 0 auto;
  margin-bottom: 30px;
}
.info__code-inner {
  border: 2px dashed #ED1C24;
  border-radius: 15px;
  padding: 15px 30px;
}
@media all and (max-width: 768px) {
  .info__code-inner {
    padding: 5px 20px;
  }
}
.info__code-main {
  font-family: "cinzel-bold";
  font-size: 50px;
  font-size: calc(14px + 2 * ( 100vw / 100));
  color: #ED1C24;
  text-shadow: 0 0 1px black;
}
@media all and (max-width: 768px) {
  .info__code-main {
    font-size: 30px;
  }
}
.info__code-text {
  color: black;
  font-family: "cinzel-bold";
  font-size: 32px;
  font-size: calc(14px + 1 * ( 100vw / 100));
}
@media all and (max-width: 768px) {
  .info__code-text {
    font-size: 20px;
  }
}
.info__btn {
  font-family: "cinzel-bold";
  color: #5F1307;
  text-decoration: none;
  font-size: 28px;
  width: 231px;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  background-image: url('../images/button.png');
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}
.info__btn:hover {
  color: #ED1C24;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.mobile-text {
  display: none;
}
@media all and (max-width: 768px) {
  .mobile-text {
    display: block;
  }
}
.terms{
  font-size: 14px;
  line-height: 1.3;
  max-width: 750px;
  text-align: center;
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  bottom: 10px;
  padding: 10px;
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .info{
    margin-left: auto;
    margin-right: auto;
  }
}