@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  z-index: 10;
}

body {
  background-color: #212025;
}

.container__cards {
  width: 100%;
  margin: 780px auto auto auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card {
  width: 350px;
  margin: 10px;
  padding: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 300ms;
}

.card:hover {
  transform: translateY(-10px);
}

.card:hover .cover__card span {
  transform: scale(1.1);
}

.cover__card {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
}

.cover__card {
  width: 110%;
  transition: all 300ms;
}

.card h2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  color: #fff;
  text-align:center;
}

.card p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.5px;
  text-align:center;
}

.card hr {
  margin-top: 30px;
  border: none;
  height: 0.2px;
  background: #41414138;
}

.footer__card {
  margin-top: 10px;
  display: flex;
  color: #fff;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .container__cards {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-top: 50px;
    padding-bottom: 100px;
  }
}

.fondocard {
  width: 310px;
  height: 181px;
  border-radius: 14px;
  background: #72ff7d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.password{
    font-size: 150px;
}

a{
    list-style: none;
    text-decoration: none;
}

a i{
    font-weight: bold;
    color: #72ff7d;
}

.herramientas{
  z-index: 8;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-align:center;
  height: 50%;
  margin: 150px auto auto auto;
  position: relative;
}

html{
  scroll-behavior: smooth;
}

section[id]{
  scroll-margin-top: 15px;
}