html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.group-fazi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  .form-button {
    display: flex;
    align-items: center;
    justify-content: center;

    .button-with-image {
        width: 250px;
        height: 170px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 16px;
        text-align: center;
        line-height: 50px;
        cursor: pointer;
        margin: 5px; /* Espacio entre botones */
        img {
          width: 250px;
          height: 170px;
          border-radius: 10px;
        }
    }

    .button-with-image:hover {
        opacity: 0.8;
    }

    .button-without-image {
        width: 250px;
        height: 170px;
        border: none;
        color: white;
        background-color: #258cfb;
        border-radius: 10px;
        font-size: 16px;
        text-align: center;
        line-height: 50px;
        cursor: pointer;
        margin: 5px; /* Espacio entre botones */
        a {
          color: white;
        }
        img {
          width: 250px;
          height: 170px;
          border-radius: 10px;
        }
    }

    .button-without-image:hover {
        opacity: 0.8;
    }
  }

}