/* Minimal Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: #0F172A;
}

.main-body {
  display: flex;
  flex-direction: column;
}

.footer {
  text-align: center;
  font-size: 10px;
  color: #c5c5c5;
}