body {
  background: linear-gradient(-45deg, #00b4d8, #0096c7, #0077b6, #023e8a);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-image: url(img/2025-08-04_11.20.20.webp);
    background-size: cover;
    background-position: center;
backdrop-filter: blur(2px);
}
i{
    font-style: normal;
  }
h2{
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}
p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  
}
.d-grid{
    margin-top: 3vh;
}
.link-card {
  background: rgba(11, 59, 163, 0.76);
  border-radius: 20px;
  padding: 3rem 3rem;
  backdrop-filter: blur(30px);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
}
.laterale{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 1rem;

}
.laterale>a {
   width: 50%;
}

.laterale:nth-of-type(1) {
  margin-top: 1.5rem;
}
.link-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #fff;
}

.btn-custom {
  background-color: #0077b6;
  border: none;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-custom:hover {
  background-color: #0096c7;
  color: #fff;
}

@media (max-width: 768px) {
  .link-card {
    padding: 2rem;
  }
  
  .link-card img {
    width: 100px;
    height: 100px;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .btn-custom {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  a{
    height: 5vh; 
  }
  i{
    font-style: normal;
    font-size: 1.2rem;
  }
}