@keyframes introduce {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.logo {
  animation: introduce 0.5s 0.3s both;
  width: 30%;
  height: auto;
}
@media screen and (max-width: 450px) {
  .logo {
    width: 50%;
    height: auto;
  }
}

.logoPindex {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 450px) {
  .logoPindex {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-height: 200px) {
  .logoPindex {
    display: none;
  }
}

.logoP {
  display: flex;
  justify-content: center;
}

.slogan {
  animation: introduce 0.5s 0.8s both;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 2px black;
  padding: 30px;
  font-family: orbitron, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .slogan {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .slogan {
    font-size: 2rem;
  }
}
@media screen and (max-height: 200px) {
  .slogan {
    display: none;
  }
}

body {
  overflow: hidden;
}

@keyframes infiny {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.bg {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  animation: infiny 15s 0.3s ease-in-out infinite;
  overflow: hidden;
}

.presentation {
  width: 100%;
  height: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.presentation img {
  padding: 20px;
}
@media screen and (min-width: 700px) {
  .presentation img {
    padding: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .presentation img {
    padding: 50px;
  }
}
@media screen and (min-width: 2000px) {
  .presentation {
    padding-top: 250px;
  }
}
@media screen and (min-height: 1050px) {
  .presentation {
    padding-top: 200px;
  }
}
@media screen and (max-height: 600px) {
  .presentation {
    justify-content: start;
    height: 350px;
  }
}
@media screen and (max-height: 200px) {
  .presentation {
    height: 50%;
  }
}

.enter {
  width: 200px;
  margin: 50px auto 0;
  text-align: center;
  animation: introduce 0.5s 1.3s both;
}
.enter a {
  font-family: orbitron, Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9333333333);
  background: linear-gradient(rgba(86, 173, 255, 0.842), rgba(0, 35, 131, 0.822));
  padding: 15px;
  border-radius: 30px;
}
.enter a:hover {
  background: linear-gradient(rgba(0, 0, 122, 0.774), rgba(48, 136, 218, 0.801));
}
@media screen and (max-height: 200px) {
  .enter a:hover {
    background: none;
  }
}
@media screen and (max-height: 200px) {
  .enter a {
    background: none;
  }
}
@media screen and (min-width: 2000px) {
  .enter {
    padding: 200px;
  }
}
@media screen and (min-height: 1100px) {
  .enter {
    padding-top: 250px;
  }
}
@media screen and (max-height: 600px) {
  .enter {
    margin: 0 auto;
  }
}
@media screen and (max-height: 200px) {
  .enter {
    width: 70%;
    margin: 0 auto;
    padding: 0;
  }
}/*# sourceMappingURL=index.css.map */