*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #000000;
  color: rgb(255, 255, 255);
  font-family: "Inter";
  margin: 69px 0 100px 0;
  height: 3000px;
}

.main {
  font-weight: 400;
  width: 100%;
}

input:focus {
  outline: none;
}

a,
div,
li,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-user-drag: none;
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.warning {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.btn {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 100px;
}

.btn--round {
  aspect-ratio: 1/1;
  padding: 0;
}
