* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #f0d7e7;
}

body.--tacila {
  background-image: url("../img/heart-modified.png");
  background-size: 5%;
  background-repeat: repeat;
  background-position: center center;
}

.container {
  perspective: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container__title {
  text-align: center;
  margin-bottom: 1em;
  font-size: 3em;
  font-family: "Major Mono Display", monospace;
  font-weight: 100;
  background: rgb(255 255 255 / 64%);
}
.container__title::before {
  background-size: 50%;
  /* Match the background-size with the parent */
  filter: blur(10px);
  /* Adjust the blur amount as needed */
}
.container__card {
  width: 20em;
  height: 18em;
  background-color: #f0d7e7;
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  position: relative;
}
.container__card--tacila {
  width: 22em;
}
.container__card__img {
  border: solid white 15px;
  background-image: url("../img/me.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.container__card__img--tacila {
  background-image: url("../img/tac.png");
}
.container__card__overlay {
  opacity: 0;
  border: solid white 15px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s;
  z-index: 200;
}
.container__card__overlay:hover {
  opacity: 1;
}

.hidden {
  display: none;
}

#helper {
  color: white;
  padding: 0.2em;
  border-radius: 5%;
  background-color: grey;
  position: absolute;
  z-index: 90;
}

/* Adjust background size for mobile devices */
@media screen and (max-width: 768px) {
  body.--tacila {
    background-size: 10%; /* Size for mobile devices */
  }
}


/* Media query for mobile devices (up to 768px width) */
@media screen and (max-width: 768px) {
  .container__title--desktop {
    display: none;
  }
}

/* Media query for desktop devices (769px width and above) */
@media screen and (min-width: 769px) {
  .container__title--mobile {
    display: none;
  }
}
