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

:root {
  --border-color: #a0ffd0;
  --border-thickness: 8px;
  --border-radius: 8px;
  --blur-value: 0px;
}

body {
  font-family: 'Baloo 2', cursive;
  width: 100vw;
  min-height: 100vh;
  color: #a0ffd0;
  background-color: #1E1E2E;
}

.navbar {
  margin: 0 auto;
  min-height: 20vh;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 4rem;
  font-family: 'Baloo 2', cursive;
  font-weight: bold;
}

.container {
  margin: 0 auto;
  min-height: 70vh;
  max-width: 1080px;
  display: grid;
  place-items: center;
}

.heading {
  font-size: 2rem;
}

#draw {
  background: #fff;
}
