@charset "UTF-8";

.button-row {
  display: flex;  
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px;
  margin-bottom: 50px;
}

.button-link {  
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  width: 110px;
  height: 80px;
  text-decoration: none;
  border-radius: 5px;
  font-style: oblique;
	text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 350;
  font-style: italic;
}

a.button-link:link,a.button-link:visited,a.button-link:active {
  text-decoration:none;
  color:white;
}

.button-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.button-link:hover .button-image {
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 0 5px rgba(0,0,0,0.2));
}

.button-acta {
  background-color: #13294B;
  width: 90px;
}

.button-acta:hover {
  background-color: #59788E;
}