/** TODO: add CSS rules here :) */

/** Sets the font, background color, and text color of the page */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #121212;
  color: #fff;
  background-color: rgba(37, 34, 56, 0.6);
}

/** Center the title. */
.main-title {
  text-align: center;
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

a {
  margin-top: 1rem;
  color: rgb(220, 251, 254);
}

p {
  max-width: 600px;
}

/** Centers image and adds width restirctions. */
.responsive-img {
  margin: 0 auto;
  display: block;
  width: 90%;
  max-width: 500px;
}
