body {
  background-image: url("/img/bg.png");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
	padding: 0;
	margin: 0;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}


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

.sidebar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
}

.sidebar a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

.link-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.link {
  display: block;
  background: linear-gradient(to right, #db136c 0%, #fc3d03 100%);
  padding: 10px;
  border-radius: 5px;
	max-width: 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-inline: auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.link:hover {
  transform: scale(1.05);
}

.content h1 {
	font-weight: 500;
  font-size: 2rem;
  margin-bottom: 20px;
}

.content h3 {
	margin-bottom: 40px;
  font-size: 1.5rem;
  color: #db136c;
}


@media (max-width: 600px) {
	body {
		justify-content: flex-start;
		padding-top: 70px;
	}

	.sidebar {
		bottom: 10vh;
	}
}