:root {
  --companyDarkBlue: #1C355E;
  --companyLightBlue: #2ED9C3;
  --offWhite: #FAFAFA;
  --highlightedOffWhite: #EAEAEA;
}

html, body {
  overflow-x: hidden;
}

body {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    margin: 0;
}
body::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}

.page-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  text-align: center;
  margin-bottom: 20px;
}
.title h1 {
  font-family: 'Avenir';
  color: #1C355E;
}
.title p {
  font-family: 'Roboto', sans-serif;
  color: red;
}

.buttons {
  width: 500px;
  margin-bottom: 20px;
}
/* When the screen is small, no longer force buttons to be 500px */
@media screen and (max-width: 550px) {
  /* Move logo and signout text */
  .header {
    padding: 10px 5px 35px 5px;
  }
  .header .signout {
    margin-right: 0;
  }
  .header .navbarTitle {
    margin-left: 10px;
    transform: none;
  }

  .title {
    width: 90%;
  }
  .buttons {
    width: 90%;
  }
}

.buttons button {
  background-color: var(--companyDarkBlue);
  color: white;
  border: none;
  width: 100%;
  padding: 32px 32px;
  margin-bottom: 40px;
  text-decoration: none;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 130%;
  cursor: pointer;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
}

.buttons button:hover {
  background-color: var(--companyLightBlue);
}