:root {
  --text-color: #FFFFFF;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: raleway, sans-serif;
  align-items: center;
  color: var(--text-color);
  padding: 0 0 3rem;
  overflow: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.centered-logo {
  max-height: 83.33vh; /* 5/6 of 100vh */
  max-width: 83.33vw;  /* 5/6 of 100vw */
}

::-webkit-scrollbar {
  width: .8rem;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .5);
}

.flex-col {
  display: flex;
  flex-direction: column;
}

h1, h2 {
  margin: 0;
  color: #FFFFFF;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 1.2rem;
}

.text-center {
  text-align: center;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

footer a {
  text-decoration: none;
  color: var(--text-color);
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
