* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow: hidden;
}

body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.fullscreen {
  height: 100vh;
  height: var(--vh, 100vh);
}

.title {
  color: white;
  font-size: 30px;
  text-align: center;
  display: flex;
  gap: 8px;
}
