body {
  background-image: url(./public/bg.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.container {
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.container-content {
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.logo-icon {
  width: 298.5px;
  height: 83px;
  position: relative;
}
.button-txt {
  position: relative;
  font-size: var(--font-size-xs);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-inter);
  color: var(--color-white);
  text-align: center;
  display: inline-block;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  min-width: 129px;
  text-decoration: none;
}
.button {
  cursor: pointer;
  border: 1px solid #000;
  padding: var(--padding-xs) var(--padding-lg);
  background-color: transparent;
  border-radius: var(--br-81xl);
  background: linear-gradient(180deg, #3483e3, #2946d4);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 2px 3px rgba(255, 255, 255, 0.15) inset;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}
.button:hover {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(180deg, #3483e3, #2946d4);
  border-color: #333;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 2px 3px rgba(255, 255, 255, 0.2) inset;
}
.buttons {
  gap: 24px;
}
a.button, a.button .button-txt {
    text-decoration: none !important;
}
a {
    text-decoration: none !important;
}
.buttons,
.container,
.container-content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .buttons {
    flex-wrap: wrap;
  }
  .container-content {
    gap: 32px 64px;
  }
}
