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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: url("https://img.freepik.com/free-vector/abstract-blue-light-pipe-speed-zoom-black-background-technology_1142-8392.jpg?semt=ais_rp_progressive&w=740&q=80") no-repeat center center fixed;
  background-size: cover;
}

main {
  margin: 10px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
}
main .card {
  background-image: url("https://img.pikbest.com/backgrounds/20190720/globalization-technology-invitation-background_1899311.jpg!sw800");
  width: 300px;
  height: 500px;
  flex-direction: column;
  gap: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: aquamarine;
  background-blend-mode: multiply;
  transition: transform 0.4s ease;
}
main .card img {
  width: 280px;
  border-radius: 5%;
}
main .card h1 {
  font-family: monospace;
  font-size: 2rem;
}
main .card p {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
}
main .card .tags {
  display: flex;
  gap: 10px;
}
main .card .tags span {
  transition: transform 0.4s ease-out;
  padding: 5px 10px;
  background-color: rgba(127, 255, 212, 0.288);
  text-transform: capitalize;
  border-radius: 8px;
}
main .card .tags span:hover {
  transform: scale(1.1);
}
main .card #about {
  font-size: 0.8rem;
}
main .card:hover {
  z-index: 10;
  transform: scale(1.05);
}/*# sourceMappingURL=style.css.map */