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

@font-face {
  font-family: Jetbrains;
  src: local("Jetbrains"), url("./Assets/font/JetBrainsMono-Regular.woff2") format("truetype");
}
.animate__animated.animate__zoomIn {
  --animate-duration: .25s;
}

html {
  font-size: 62.5%;
  font-family: "Jetbrains", monospace;
  color: #F6F8FF;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: black;
  color: #F6F8FF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: hsl(200, 22%, 8%);
  background: linear-gradient(45deg, hsl(200, 22%, 8%) 0%, rgb(5, 2, 20) 100%);
  background: -webkit-linear-gradient(45deg, hsl(200, 22%, 8%) 0%, rgb(5, 2, 20) 100%);
}

#logo {
  height: 10em;
  width: auto;
  margin: auto;
}

.main {
  width: 50vw;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.main P {
  text-align: justify;
}