html {
  font-family: "Open Sans";
  color: #35495e;
  background-color: rgb(249, 250, 252);
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.container {
  margin: 0 auto;
  padding-top: 5rem;
  text-align: center;
  max-width: 50rem;
}

li {
  /* all: unset */
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}
ul {
  all: unset;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: blue;
}

.button--blue {
  display: inline-block;
  border-radius: 15px;
  border: 1px solid rgb(191, 200, 210);
  color: #35495e;
  background-color: white;
  text-decoration: none;
  padding: 6px 10px;
  margin-left: 7px;
  margin-right: 7px;
  margin-bottom: 1rem;
}

.button--blue:hover {
  color: #fff;
  cursor: pointer;
  background-color: #35495e;
}

.menu-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-button > img {
  margin-right: 0.5rem;
}

.button-icon {
  width: 20px;
}

.menu-buttons {
  width: 100%;
}

.title {
  font-family: "Quicksand", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: block;
  font-weight: 300;
  font-size: 50px;
  color: #35495e;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.subtitle {
  font-weight: 300;
  font-size: 20px;
  color: #526488;
}

h2 {
	font-size: 2rem;
}

.project-list > li {
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
}

.main-logo {
  border-radius: 50%;
  -webkit-animation: 1s appear;
          animation: 1s appear;
  margin: auto;
}
