.link-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A8E6A3;
  font-family: Arial, sans-serif;
  padding: 20px;
  gap: 20	px;
  flex-wrap: wrap;
}

.link-container .logo {
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100px;
  height: 100px;
}

.link-container a {
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  max-width: 300px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.link-container a:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.qr {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width : 286px ){
  .link-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .link-container a {
    width: 100%;
    max-width: none;
  }
}
