body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Mono", monospace;
  background: black;
  overflow: hidden;
}
canvas {
  width: 100%;
  height: 100%;
}
h1,
h2,
h3 {
  font-family: "Oxanium", monospace;
}
button:hover {
  cursor: pointer;
}

#header {
  position: absolute;
  color: #eee;
  left: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%);
  font-size: 0.5rem;
  background-color: rgba(0, 0, 0, 0);
}
.user-form {
  position: fixed;
  bottom: 10%;
  left: 2%;
  height: fit-content;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 25px;
  color: #eee;
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  align-items: flex-start;
  justify-content: center;
  width: fit-content;
}

#asteroid-count{
  position: absolute;
  bottom: 5%;
  left: 2%;
  padding-left: 1em;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 25px;
  color: #eee;
}

#about{
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  color: #eee;
  font-size: 14px;
  top: 7%;
  padding: 0 1em 0 1em;
}



.asteroid-label{
  color:#e1b12c;
}
.dangerous{
  color:#e84118;
}
.safe{
  color:#00a8ff;
}

@media screen and (min-width: 700px) {
  #about{
    font-size: 18px;
  }
  #header {
    font-size: 0.8rem;
    letter-spacing: 7px;
  }
  .user-form {
    align-items: center;
    font-size: 1.3rem;
    bottom: 5%;
  }
  #asteroid-count{
    left: 80%;
    font-size: 1.3rem;
  }
  input[type="date"] {
    font-size: 1.4rem;
  }
  #asteroidTooltip {
    font-size: 1.1rem !important;
  }
}

@media screen and (min-width: 1000px) {
  #about{
  position: absolute;
  top: 85%;
  right: 2%;
  width: 40%;
  height: fit-content;
  padding-left: 1em;
  background-color: rgba(0, 0, 0, 0);
  color: #eee;
}
  #asteroid-count{
    left: 85%;
  }
  input[type="date"]{
    border: none;
    background: black;
    cursor: pointer;
    color: white;
  }
  ::-webkit-datetime-edit { border: none; }
  ::-webkit-datetime-edit-fields-wrapper {
    background: rgb(0, 0, 0, 0.8);
  }
  ::-webkit-inner-spin-button {
    display: none;
  }
  ::-webkit-calendar-picker-indicator {
    background: rgb(0, 0, 0, 0.8);
    color: white;
  }
  ::-webkit-calendar-picker-indicator:hover{
    cursor: pointer;
  }
  button{
    background: rgb(0, 0, 0, 0.8);
    border: none;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}
