* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  line-height: 1.5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.btn {
    display: inline-block;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 9px 15px;
    font-size: 100%;
    line-height: 1.5;
    border-radius: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease,
    box-shadow 0.5s ease;
    line-height: 1.15;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    border-radius: 5px;

    &:hover,
    &:active {
    background-color: #eaeaea;
    color: #000000;
    }
}

.hero {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-inner {
    max-width: 100%;
    width: 500px;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #222222;
    background: #151515;
    text-align: center;
}

.hero-inner-logo img {
    display: inline-block;
    height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.hero-inner-content {
    margin: 40px 0;
}

.hero-inner-content a {
    color: #ffffff;
    font-size: 1rem;
    line-height: inherit;
    text-underline-offset: 2px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

p {
    display: block;
    margin-bottom: 10px;
}