@font-face {
  font-family: "Augure";
  src: url("./fonts/AugureTrialVAR.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Using Augure Trial Variable font in TTF format */

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

html,
body {
  height: 100%;
  background-color: white;
}

.container {
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.black-rectangle {
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aspera-text {
  color: white;
  font-family: "Augure", "Helvetica Neue", sans-serif;
  font-size: clamp(4rem, 15vw, 12rem);
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
  font-weight: normal;
  font-feature-settings: "ss01" 0; /* Using standard variant (SS0) */
}
