/* Nathan Ruffieux, 29.01.2024, secret.css */

/* Style for the link box */
.link-box {
  display: inline-block;
  padding: 10px;
  margin: 5px;
  background-color: #3498db; /* Background color */
  color: #fff; /* Text color */
  text-decoration: none; /* Remove underline from link */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease-in-out; /* Smooth transition */
}

/* Hover effect for the link box */
.link-box:hover {
  background-color: #2980b9; /* Darker background color on hover */
}
