* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none;
}

.nav {
  background-color: #0B0A22;
  width: 100%;
  height: 7vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.nav___logo {
  font-size: 1.2rem;
  flex-wrap: wrap;
}

.nav___ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.nav___svg {
  height: 2rem;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  text-align: center;
}

.header___gif {
  width: 90%;
  max-width: 640px;
}

.contenidos__title {
  width: 100%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.contenidos {
  margin: auto;
  padding: 3%;
  width: 90vw;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  background-color: #0B0A22;
  overflow-y: auto;
}
.contenidos .contenidos__card {
  height: 300px;
  width: 300px;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.contenidos .contenidos__img {
  height: 100%;
  transition: all 0.5s;
}
.contenidos .conteidos__text {
  position: relative;
  background-color: #1B1B32;
  height: 80px;
  width: 300px;
  z-index: 1;
  border-radius: 40px 0px 40px 40px;
  bottom: 60px;
  transition: 0.2s ease-in;
}
.contenidos .conteidos__text h2 {
  text-align: center;
  margin: 20px auto;
}
.contenidos .conteidos__text p {
  transition: all 0.5;
  margin: auto;
  width: 200px;
  height: 100px;
  text-align: center;
}
.contenidos .contenidos__p {
  transition: all 0.2s;
  opacity: 0;
}

.contenidos__card:hover {
  box-shadow: 11px 12px 22px -1px rgba(11, 10, 34, 0.66);
  -webkit-box-shadow: 11px 12px 22px -1px rgba(11, 10, 34, 0.66);
  -moz-box-shadow: 11px 12px 22px -1px rgba(11, 10, 34, 0.66);
}
.contenidos__card:hover .contenidos__img {
  height: 105%;
  filter: blur(2px);
}
.contenidos__card:hover .conteidos__text {
  bottom: 150px;
  height: 150px;
}
.contenidos__card:hover .contenidos__p {
  opacity: 1;
}

@media (max-width: 750px) {
  .contenidos {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer {
  width: 100%;
  height: 10vh;
  background-color: #0B0A22;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1, h2, h3, h4, p {
  color: white;
  font-family: monospace;
}

h1 {
  font-size: 2rem;
}

body {
  background-color: #1B1B32;
}

.description {
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px 0;
  font-size: 1rem;
}/*# sourceMappingURL=index.css.map */