:root {
  --yellow: #fccd35;
  --pink: #ff19e9;
  --green: #57a564;
  --dGreen: #4d9259;
  --white: #ffffff;
  --light-grey: #b1b1b1;
  --dark-grey: #2b2b2b;
  --black: #000000;
  --red: #bd3834;
  --orange: #dc9a4a;
  --dBlue: #365c94;
  --boardGreen: #d5e3d6;
  --textSecondary: #6c757d;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "whitrabt";
  src: url("./assets/fonts/whitrabt.otf") format("opentype");
}
@font-face {
  font-family: "Yokelvision";
  src: url("./assets/fonts/Yokelvision.otf") format("opentype");
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "whitrabt";
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.container {
  padding: 1rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.--gold {
  color: var(--yellow);
}

.info-title {
  text-align: center;
  color: var(--red);
  font-size: 1.4rem;
  letter-spacing: 2px;
  position: relative;
  line-height: 3.5rem;
  margin-bottom: 2rem;
  font-weight: normal;
}
.info-title .info-title-text {
  font-family: "Yokelvision";
  color: var(--white);
}
.info-title .info-title-text .--gold {
  font-size: 4.5rem;
}
.info-title .info-title-text.--subtitle {
  font-size: 3rem;
  font-family: "whitrabt";
  background-color: var(--red);
  color: var(--white);
  padding: 0.5rem;
  border: 4px solid var(--white);
}

.info-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  border-radius: 8px;
  border: solid 4px var(--red);
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.info-container__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--red);
}
.info-container__description {
  font-family: "whitrabt" !important;
  font-size: 1.2rem;
  line-height: 1.3rem;
}

.details {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-family: "Lato";
}

.svg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-wrapper:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: red;
  background: #b7d9d4;
  background: linear-gradient(180deg, #b7d9d4 27%, #e8f2e8 65%);
  opacity: 0.6;
}
.svg-wrapper #wac-backdrop {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: relative;
  min-height: 100%;
  height: 170%;
  width: auto;
  opacity: 0.65;
  z-index: -2;
  object-fit: cover;
}

.footer {
  position: relative;
  z-index: 1;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer__link {
  background-color: var(--black);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer__link .fa-discord,
.footer__link .fa-twitter {
  height: 50%;
  width: 50%;
}
.footer__link:hover {
  color: var(--white);
}

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