@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100;0,200;0,300;0,400;0,600;0,800;1,100;1,400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Mono:wght@200;400;600;700&display=swap');

* {
  font-family: 'Lato';
  color: grey;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 20px;
}

body {
  width: 100vw;
  height: 100vh;

  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  overflow-x: hidden;
}

#main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

h1 {
  color: white;
  font-size: 2.5em;
  padding: 20px 10px;
}

h2 {
  padding: 30px 10px 10px 10px;
  font-size: 1.3em;
}

#source {
  padding-top: 30px;
}

.button {
  box-sizing: border-box;
  background-color: transparent;
  color: gray;
  padding: 10px 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  font-size: 0.86rem;
  margin-top: 80px;
}

.button:hover {
  cursor: pointer;
  border: 2px solid grey;
}
