html {
  font-size: 16px;
  /* 1rem = 16px */
}

html {
  font-size: 16px;
  /* 1rem = 16px */
}

#contactHomeCard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 22rem;
  height: 22rem;
  background-color: #f7f7ff;
  border-radius: 1rem;
  box-shadow: 4px 4px 19px -4px rgba(10, 11, 10, 0.2) !important;
  text-align: center;
  position: relative;
}
#contactHomeCard img {
  display: block;
  width: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #f7f7ff;
  transition: opacity 2s ease-out;
}
#contactHomeCard p {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
#contactHomeCard img:hover {
  opacity: 0;
  transition-duration: 1s;
}

#devHomeCard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 22rem;
  height: 22rem;
  background-color: #f7f7ff;
  border-radius: 1rem;
  box-shadow: 4px 4px 19px -4px rgba(10, 11, 10, 0.2) !important;
  text-align: center;
  position: relative;
}
#devHomeCard img {
  display: block;
  width: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #f7f7ff;
  transition: opacity 2s ease-out;
}
#devHomeCard p {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
#devHomeCard img:hover {
  opacity: 0;
  transition-duration: 1s;
}

#indusHomeCard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 22rem;
  height: 22rem;
  background-color: #f7f7ff;
  border-radius: 1rem;
  box-shadow: 4px 4px 19px -4px rgba(10, 11, 10, 0.2) !important;
  text-align: center;
  position: relative;
}
#indusHomeCard img {
  display: block;
  width: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #f7f7ff;
  transition: opacity 2s ease-out;
}
#indusHomeCard p {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
#indusHomeCard img:hover {
  opacity: 0;
  transition-duration: 1s;
}

#aboutHomeCard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 22rem;
  height: 22rem;
  background-color: #f7f7ff;
  border-radius: 1rem;
  box-shadow: 4px 4px 19px -4px rgba(10, 11, 10, 0.2) !important;
  text-align: center;
  position: relative;
}
#aboutHomeCard img {
  display: block;
  width: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #f7f7ff;
  transition: opacity 2s ease-out;
}
#aboutHomeCard p {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
#aboutHomeCard img:hover {
  opacity: 0;
  transition-duration: 1s;
}

@container (min-width: 40rem) {
  .homeCard {
    width: 18rem;
    height: 18rem;
  }
}
/* ****************************************************** */
/* Media queries */
@media (max-width: 1600px) {
  #contactHomeCard,
  #devHomeCard,
  #indusHomeCard,
  #aboutHomeCard {
    width: 18rem;
    height: 18rem;
  }
}
/* iPhone X/XS/11 Pro */
@media screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
  #contactHomeCard,
  #devHomeCard,
  #indusHomeCard,
  #aboutHomeCard {
    width: 12rem;
    height: 12rem;
  }
}
/* iPhone 11 */
@media screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) {
  #contactHomeCard,
  #devHomeCard,
  #indusHomeCard,
  #aboutHomeCard {
    width: 12rem;
    height: 12rem;
  }
  #contactHomeCard p,
  #devHomeCard p,
  #indusHomeCard p,
  #aboutHomeCard p {
    font-size: 1rem;
  }
}
/* Samsung Galaxy S21 FE */
@media screen and (min-device-width: 360px) and (max-device-width: 1080px) and (-webkit-min-device-pixel-ratio: 2.5) {
  #contactHomeCard,
  #devHomeCard,
  #indusHomeCard,
  #aboutHomeCard {
    width: 10rem;
    height: 10rem;
  }
  #contactHomeCard p,
  #devHomeCard p,
  #indusHomeCard p,
  #aboutHomeCard p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=homeCard.css.map */