/* GENERAL */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

*:focus {
  outline: 2px solid #1da15b !important;
  outline-offset: 3px;
}

body {
  background: white;
  min-width: 100vw;
  min-height: 100vh;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h3, h2, h1 {
  font-family: "Google Sans Display", sans-serif;
  font-weight: 700;
}

h1 {
  margin: 30px 0 20px;
  font-size: 30px;
}

h2 {
  margin: 25px 0 15px;
  font-size: 26px;
}

h3 {
  margin: 15px 0 10px;
  font-size: 23px;
}

button, .button, .btn {
  background: white;
  outline: none;
  border: 1px solid #777;
  border-radius: 5px;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
}
button:hover, .button:hover, .btn:hover {
  border-color: #1da15b;
  color: #1da15b;
}

li {
  margin-left: 30px;
  list-style-position: outside;
}

code {
  background: #333;
  border-radius: 5px;
  padding: 5px;
  display: inline-block;
  font-family: "Google Sans Mono", sans-serif;
  font-size: 16px;
  color: white;
}

.error {
  color: #f12d2d;
}

/* SECTIONS */
main {
  display: flex;
  flex-direction: row;
}
main img {
  margin-right: 50px;
  height: 100px;
  object-fit: contain;
}
main div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main div * {
  margin-top: 0;
  color: #333;
}

#options {
  margin-top: 75px;
}
#options button {
  margin: 0 30px;
}

aside {
  background: #dee2df;
  border-radius: 15px;
  padding: 40px 30px;
  display: none;
  position: absolute;
}

#more-info-content {
  overflow: auto;
  width: 50vw;
  height: auto;
  max-height: 75vh;
}
#more-info-content button {
  background: none;
  border: none;
  position: absolute;
  width: 50px;
  top: 10px;
  right: 10px;
  font-size: 30px;
}

footer {
  background: #dee2df;
  padding: 3px 15px 0;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
footer * {
  font-size: 16px;
  color: #555;
  text-decoration: none;
}
footer *:hover {
  color: #333;
}
footer img {
  opacity: 0.5;
  width: 25px;
}

/* MOBILE */
@media only screen and (max-width: 700px) {
  main {
    flex-direction: column;
  }
  main img {
    margin-right: 0;
    margin-bottom: 30px;
  }
  main div {
    text-align: center;
  }

  #options {
    display: flex;
    flex-direction: column;
  }
  #options button, #options .button, #options .btn {
    margin: 10px 0;
  }
}

/*# sourceMappingURL=main.css.map */
