@font-face {
  font-family: nexa;
  src: url('fonts/nexa-bold.ttf');
}

/* body {
/*  background-image: url("/agos/assets/bg_tile2.webp");
/*  background-repeat: repeat;
/*  background-size: 192px 192px;
/*  font-family: "nexa", sans-serif;
/*  margin: 0;
/*  padding: 0;

/*  display: flex;
/*  justify-content: center; /* ← only horizontal centering */
/*  align-items: flex-start; /* ← top of the screen */
/*  min-height: 100vh;
/*}*/

.credit {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  padding: 0;        /* make sure no extra spacing */
  margin: 0;         /* remove extra outer spacing */
  line-height: 1;    /* avoid weird line spacing */
  background-color: transparent; /* or whatever you're using */
}

p {
  font-family: "nexa", sans-serif;
}

p.credit {
  margin: 0;
}

a:visited {
  color: black;
  text-decoration: underline;
}

a:link{
  color: black;
  font-size: 20px;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  text-align: center;
  margin-top: 10vh;
}

.image-container img {
  width: auto;
  height: 50vh;
}

.logo {
  text-align: center;
  -webkit-animation: woosh 2s ease-in-out infinite alternate;
  animation: woosh 2s ease-in-out infinite alternate;
  -moz-animation: woosh 2s ease-in-out infinite alternate;
}

@keyframes woosh {
  from {
    scale: 1;
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  to {
    scale: 0.95;
    transform: rotate(3deg);
  }
}
