/* download*/

.format {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.format a img {
  max-width: 150px;
  margin: 4px;
  display: block;
  border: 1px solid #333333;
  border-radius: 4px;
  box-shadow: 0px 0 15px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.format a img:hover {
  transform: translateY(-4px);
}
