html {
  background-color: black;
  color: white;
}

.center {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  margin: 20px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.center h1 {
  margin: 0;
}

.infoLine {
  opacity: 0;
  transition: opacity 1s ease-in;
  mask-repeat: no-repeat;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  mask-size: 0%;
}

.infoLine.visible {
  opacity: 1;
  mask-size: 150%;
  transition: opacity 1.5s ease-in, mask-size 1.5s ease-in;
}

.links {
  height: 100px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.links a {
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}

.links svg {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
  fill: gray;
}

.links svg:hover {
  transform: scale(1.1);
  fill: white;
}

.cursor {
  display: inline-block;
  width: 1ch;
  animation: blink 0.4s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .province {
    display: none;
  }
}
