body {
  font-family: "Public Sans";
}

.font-tinos {
  font-family: 'Tinos';
}

.welcome-card {
  width: 60%;
}

.bg-image {
  position: fixed;
  z-index: -1;
  background-image: url("../img/bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
}

.bg-image:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .welcome-card {
    width: 100%;
    text-align: center;

    & img {
      display: block;
      margin: 0 auto;
    }
  }
}