@font-face {
  font-family: "Stencil";
  src: url('./fonts/STENCIL.TTF') format('truetype');
}


body, html {
  height: 100%;
}

/*
* {
  box-sizing: border-box;
}
  */

.bg {
  /* The image used */
  background-image: url("./images/fanfara.jpeg");

  /* Add the blur effect */
  -webkit-filter: blur(8px) grayscale(100%);
  filter: blur(8px) grayscale(100%);

  /* Full height */
  height: 100%;
  width: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  z-index: -1;
  
  position: fixed;
}

/* Position text in the middle of the page/image */
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  /*font-weight: bold;*/
  border: 3px solid #f1f1f1;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80%;
  padding: 20px;
  text-align: center;
}

.loghi {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0 20px;
}

.loghi img {
    max-height: 200px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.stencil-font {
  font-family: "Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
}
