@font-face {
  font-family: "Aeonik Pro Medium";
  font-weight: 500;
  src: url("../font/AeonikPro-Medium.ttf") format("truetype");
}

* {
  font-family: "Aeonik Pro Medium", sans-serif;
}

body {
  background: rgba(22, 22, 56, 1) url("../img/bg.png") center;
  background-size: cover;
}

.page {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 72px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  color: white;
}

.header {
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
}

.lead {
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  color: #af47ff;
}

a {
  color: #af47ff;
}

a:active {
  color: #af47ff;
}

button.purchase {
  width: 320px;
  height: 72px;
  background-color: #fff;
  color: #000;
  border-radius: 36px;
  border-width: 0;
  cursor: pointer;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
}

button.purchase:hover {
  background-color: #000;
  color: #fff;
}

.manager {
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
  line-height: 120%;
}

ul {
  list-style-position: inside;
  font-size: 20px;
}

#VENOM_CONNECT_MODAL_ID {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.notification {
  width: 400px;
  right: calc(50% - 200px);
  bottom: 20px;
  z-index: 10;
  display: flex;
  position: fixed;
  list-style: none;
  background: black;
  flex-direction: column;
  justify-content: flex-end;
}

.notification li {
  margin: 0.4rem 1.2rem;
  cursor: pointer;
  padding: 1rem 1.5rem;
  display: flex;
  overflow: hidden;
  position: relative;
  flex-flow: column wrap;
  border-radius: 10px;
  justify-content: center;
}

/* info */
.notification li h3 {
  flex: 1;
  color: white;
  text-align: center;
  text-transform: uppercase;
}

/* err */
.notification li h5 {
  flex: 1;
  color: red;
  margin: 0;
  overflow: auto;
  max-width: 100%;
  text-align: center;
}