* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  scroll-behavior: smooth;
}

body {
  background-color: #1d263b;
}

h1,
h2,
h3 {
  font-family: "Fira Mono", monospace;
}

h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
}

h3 {
  margin: 0 auto;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.1em;
}

a,
span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.green {
  color: #7eb77f;
}

.bold {
  font-weight: 700;
}

.pink {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #1da1f2;
}

ul {
  list-style-type: none;
}

.social-link a i {
  transition: all 0.2s ease;
}

.social-link a i:hover {
  color: #1da1f2;
}

.main-container {
  margin: 0 auto;
  padding: 0 25px;
  text-align: center;
  max-width: 1600px;
}

section {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-top: 8vh;
}

section .hyperlink {
  color: white;
  background-color: #1da1f2;
  font-weight: 700;
  font-size: 20px;
  text-decoration: underline;
  transition: all 0.2s ease;
  padding: 8px 50px;
  text-decoration: none;
  border-radius: 30px;
}

section .hyperlink:hover {
  color: black;
}

.section-description {
  margin: 25px auto 0 auto;
  text-align: center;
  max-width: 1000px;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}

.page-title {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title img {
  height: 40px;
  width: auto;
  margin-right: 20px;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 2em;
  }
}
