body {
  font-family: Arial, sans-serif;
  background-color: #2a353d;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.body-container {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.overlay {
  background-color: #1414163f;
  z-index: 15;
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(7px);
}

.body-container > .links-container {
  display: flex;
  gap: 30px;
}

.top > a {
  font-size: 14px;
}

.top > a:hover {
  font-size: 16px;
  transition: all 0.1s;
}

.logo {
  max-width: 350px;
  width: 100%;
}

.logo > img {
  width: 100%;
}

.links-container {
  height: 100%;
  width: 100%;
  max-width: 600px;
  max-height: 600px;
  border-radius: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(5px 5px 30px rgba(0, 0, 0, 0.87));
  backdrop-filter: blur(20px);
}

a.button {
  background-color: #80babd;
  color: #141416c4;
  padding: 15px 20px;
  border-radius: 10px;
  z-index: 20;
  font-weight: bold;
}

a.button:hover {
  background-color: #80babdcc;
  transform: scale(1.1);
  transition: ease-in-out 0.3s;
}

.top {
  background-color: black;
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: end;
}

.bottom {
  background-color: black;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: 0;
  z-index: 25;
}

.link {
  font-weight: bold;
  letter-spacing: 1px;
  margin-right: 30px;
}

.img-container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #18181b;
  background-image: linear-gradient(to bottom, #222c33 50%, #18181b 50%);
  background-size: 100% 100%;
}

.img-container > img {
  height: 150%;
}

h1 {
  color: #4caf50;
  text-align: center;
  margin-top: 20px;
}

p {
  color: #555;
  text-align: center;
}

a {
  text-decoration: none;
  color: white;
}

@media (max-width: 800px) {
  .links-container {
    max-width: 350px;
    max-height: 350px;
    background-color: #0000008a;
  }

  .logo {
    max-width: 250px;
  }
}
