:root {
  --Beige: #b0ad8f;
  --Black: #060606;
  --White: #ffffff;
  --Yellow: #ebff54;
  --Green: #7a7d3d;
  --Dark-Green: #525229;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Litheum Text";
  src: url("../fonts/Litheum\ Text_beta\ v1.0.otf");
}

@font-face {
  font-family: "Litheum Title";
  src: url("../fonts/Litheum\ Title_beta\ v1.0.otf");
}

body {
  background: linear-gradient(90deg, var(--Black) 50%, #151515 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}

button {
  background: transparent;
  cursor: pointer;
  border: none;
}