/* Linkcontainer */
.link-container {
  display: block;
  text-align: center;
  margin: 25px auto;
}

/* Link Button */
.link-button {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: #ed145b;
  color: #fff;
  border: 2px solid #ed145b;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 1px 3px #bfbfbf;
  transition:
    background-color .2s ease-in-out,
    border-color .2s ease-in-out,
    box-shadow .2s ease-in-out,
    transform .2s ease-in-out;
}

/* Hover */
.link-button:hover {
  background: #b5045d;
  border-color: #b5045d;
  color: #fff;
  text-decoration: none;
  box-shadow: 2px 5px #666;
  transform: translateY(-2px);
}

/* Desktop */
@media (min-width:1025px) and (max-width:1280px) {
  .link-container {
    margin: 30px auto 10px;
  }
}

/* Tablet */
@media (min-width:768px) and (max-width:1024px) {
  .link-container {
    margin: 25px auto 20px;
  }

  .link-button {
    display: block;
    width: 80%;
    margin: 15px auto;
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
  }

  .link-button:hover {
    transform: none;
  }
}

/* Smartphone */
@media (min-width:481px) and (max-width:767px) {
  .link-container {
    margin: 20px auto 10px;
  }
}

/* Kleine Smartphones */
@media (max-width:480px) {
  .link-container {
    margin: 20px auto 10px;
  }

  .link-button {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 1rem;
  }

  .link-button:hover {
    transform: none;
  }
}