* {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
* .cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
* div.card {
  position: relative;
  top: 0;
  z-index: 555;
  display: flex;
  align-items: center;
}
* css-doodle.bg-doodle {
  z-index: -1;
  position: absolute;
  opacity: 0.65;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.h1-title {
  display: flex;
  font-size: 1.3rem;
  flex-wrap: nowrap;
  max-width: 70%;
  align-items: stretch;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  flex-direction: column;
  padding-left: 15%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  fill: currentColor;
  background-image: linear-gradient(to left, #e389e8, #f9ff00, #8ee1fd);
  --webkit-background-clip: text;
  --moz-background-clip: text;
  -webkit-background-clip: text;
          background-clip: text;

  text-align: center;
  backdrop-filter: blur(8px);
  padding-right: 15%;
}

.card {
  position: relative;
  margin: 3rem;
  width: 190px;
  height: 254px;
  background: #f00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #03a9f4, #ff0058);
  filter: blur(30px);
}

.card b {
  position: absolute;
  inset: 6px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.card img {
  position: absolute;
  z-index: 3;
  scale: 0.8;
  transition: 0.5s;
  opacity: 0.65;
  width: 100%;
}

.card:hover img {
  scale: 0.7;
  opacity: 0.95;
  transform: translateY(-25px);
}

.card .content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0);
  transition: 0.5s;
}

.card:hover .content {
  transform: scale(1);
  bottom: 25px;
}

.content .title {
  position: relative;
  color: #fff;
  font-weight: 500;
  line-height: 1em;
  font-size: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.content .title span {
  font-weight: 300;
  font-size: 0.7em;
}

.content .sci {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.sci li {
  list-style: none;
}

.sci li a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  fill: currentColor;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.5s;
}

.sci li a.visit {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  fill: currentColor;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.5s;
  padding: 0.3rem 0.7rem;
}

.sci li a:hover {
  fill: currentColor;
  background-image: linear-gradient(to left, green, blue, yellow, orange, red);
  --webkit-background-clip: text;
  --moz-background-clip: text;
  -webkit-background-clip: text;
          background-clip: text;
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }
}
/* For Desktop View */
@media screen and (min-width: 1024px) {
  html {
    font-size: 15px;
  }
}
/* For Tablet View */
@media screen and (min-device-width: 600px) and (max-device-width: 760px) {
  html {
    font-size: 12px;
  }
}
/* For Tablet View */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  html {
    font-size: 14px;
  }
}
/* For Mobile Portrait View */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  html {
    font-size: 8px;
  }
}
/* For Mobile Landscape View */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
  html {
    font-size: 10px;
  }
}
/* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px) {
  html {
    font-size: 10px;
  }
}/*# sourceMappingURL=styles.css.map */
