body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f6f6f6;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.container > .row {
  width: 100%;
}

.gold {
  background: linear-gradient(135deg, #f7e7ce 0%, #d4af37 100%);
}

.silver {
  background: linear-gradient(135deg, #fcfcfc 0%, #a1a1a1 100%);
}

.logo {
  margin-bottom: 60px;
}

.lovers,
.plus {
  aspect-ratio: 2.4 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.col-md-4 a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.centered-buttons a p {
  text-align: center;
  margin: 10px 0 10px;
  color: #333;
  font-size: 1rem;
}

p.infor {
  font-size: 0.9rem !important;
}

.lovers {
  background: linear-gradient( #fff4d6 0%, #ffd700 55%, #c79618 100%);
}

.lovers img {
  max-width: 50%;
  max-height: 100%;
  position: relative;
  z-index: 1;
}

.lovers::before,
.plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lovers:hover::before,
.plus:hover::before {
  opacity: 1;
}


.plus {
  background: linear-gradient( #f8f8f8 0%, #c8c8c8 55%, #808080 100%);
}

.plus img {
  max-width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

a.btn-hover img:hover {
  opacity: 0.7;
  transition: all 0.3s;
}


.footer {
  background-color: #000;
  color: #DDD;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: auto;
}

.footer p {
  margin: 0;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }


  .logo {
    margin-bottom: 50px;
  }

  .centered-buttons > .col-md-4:first-child {
    margin-bottom: 30px;
  }
}

