body {
  background-image: url(/img/bg.webp);
  background-size: cover;
  backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.sub-heading {
  margin-bottom: 20px;
  color: #cd0000;
}

.page-wrapper {
  margin-top: 30px;
  position: relative;
  flex: 1;
}

.main-content {
  position: relative;
  z-index: 2;
}

h1,
h2 {
  text-align: center;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
}

.link-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  color: #db136c;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.action-button {
  background: linear-gradient(to right, #db136c 0, #fc3d03 100%);
  font-size: 20px;
  transition: scale 0.3s;
}

.action-button:hover {
  scale: 1.05;
}

.link-box a {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.link-box a:hover {
  background-color: #0056b3;
  text-decoration: none;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 10%;
  justify-content: space-around;
}

.info-row > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
}

.footer-nav {
  color: #fff;
  z-index: 99;
  font-size: 24px;
  white-space: nowrap;
  padding: 10px;
}

.footer-nav a {
  color: #fff;
  font-size: 18px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spread {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--x), var(--y));
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0) translate(var(--x), var(--y)) rotate(0);
  }
  100% {
    transform: rotate(270deg) translate(var(--x), var(--y)) rotate(-270deg);
  }
}

@keyframes gather {
  0% {
    transform: translate(var(--x), var(--y));
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}

.content-padding {
  padding-top: 100px;
}

@media (min-width: 1600px) {
  .info-row {
    padding-top: 10%;
    justify-content: space-around;
  }
}

.info-column {
	max-width: 40%;
}

@media (max-width: 991px) {
  .content-padding {
    padding-top: 0;
  }
  .info-column {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 67.333333%;
  }

  .link-box {
    margin-top: 20px;
  }
  .info-row {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 10%;
  }
}
