html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background: #ffffff;
  color: #000000;
  font-family: "Inter";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p,
li,
hr {
  margin: 0;
  padding: 0;
}

p,
li {
  line-height: 150%;
}

input,
hr {
  background: none;
  border: none;
  outline: none;
  font: inherit;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

.background {
  z-index: 1;
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  filter: contrast(400%) brightness(200%);
  background: radial-gradient(rgba(68, 68, 255, 0) 0%, #4444ff 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.65' numOctaves='3' stitchTiles='stitch' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
  background-size: 500% 120%;
  background-position: center;
}

.content-root {
  z-index: 100;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}
.content-root main {
  margin: auto;
}
.content-root main ul {
  margin: 0;
  padding: 0 0 0 1.5rem;
}
.content-root main li {
  padding: 0.25rem 0;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: auto;
  padding: 24px;
  gap: 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 4px 4px #000000;
}
.card .logo {
  width: 200px;
  height: 100px;
  object-fit: cover;
}
.card h1 {
  font-style: normal;
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -1px;
  color: #000000;
}
.card p {
  text-align: center;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #000000;
}
.card hr {
  display: flex;
  width: 95%;
  padding-left: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 4px;
  background: #000000;
  border-radius: 12px;
}
.card .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.button-filled,
.button-outlined,
.button-disabled {
  appearance: none;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  height: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 100px;
  border: 4px solid #000000;
  box-sizing: border-box;
  transition: all 0.2s;
}
.button-filled .content,
.button-outlined .content,
.button-disabled .content {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 100px;
}
.button-filled .content .label,
.button-outlined .content .label,
.button-disabled .content .label {
  text-align: center;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.5px;
}
.button-filled:hover,
.button-outlined:hover,
.button-disabled:hover {
  transform: scale(1.02);
}
.button-filled:hover .label,
.button-outlined:hover .label,
.button-disabled:hover .label {
  font-weight: 700;
}
.button-filled:active .content,
.button-outlined:active .content,
.button-disabled:active .content {
  background: rgba(0, 0, 0, 0.2);
}
.button-filled:active .content .label,
.button-outlined:active .content .label,
.button-disabled:active .content .label {
  font-weight: 800;
}

.button-filled {
  color: #ffffff;
  background: #000000;
}
.button-filled:hover {
  color: #000000;
  background: #4444ff;
}
.button-filled:active {
  border: 6px solid #000000;
}

.button-outlined {
  color: #000000;
}
.button-outlined:hover {
  color: #4444ff;
  border: 4px solid #4444ff;
}
.button-outlined:active {
  border: 6px solid #4444ff;
}

.button-disabled {
  color: #000000;
  opacity: 0.38;
  cursor: default;
}
.button-disabled .content {
  background: rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=styles.css.map */
