body {
  background-color: #f0e8df;
  text-align: center;
}

#back-button {
  text-align: left;
}

#navigation {
  position: sticky;
  background-color: #f0e8df;
  height: 70px;
  display: flex;
  border-bottom: 3px solid #5e5d5c;
  cursor: default;
}

.nav-button {
  padding: 25px 0;
  width: 175px;
  vertical-align: middle;
  font-size: 18px;
  font-family: 'Raleway';
  color: #ab6060;
}

#home-wrapper {
  flex: 1;
  text-align: left;
  padding-left: 20px;
}

#home-button {
  width: 100px;
  font-size: 35px;
  padding: 15px 0;
  padding-left: 20px;
  color: #ab6060;
}

#other-pages-wrapper {
  display: flex;
  justify-content: right;
}

a {
  text-decoration: none;
}

.collapsible {
  margin-top: 20px;
  text-align: center;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  width: 450px;
  height: 150px;
  outline: none;
  font-family: 'Raleway';
  font-size: 20px;
  border: 3px solid black;
  border-radius: 5px;
}

.active, .collapsible:hover {
  background-color: #ccc;
  color: black;
  border-color: black;
  font-size: 30px;
}

.content { 
  display: none;
  width: 420px;
  overflow: hidden;
  background-color: #f1f1f1;
  height: 500px;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  font-family: 'Merriweather';
  font-size: 12px;
  padding: 15px;
}

.grid {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 50px;
}

.project {
  margin-top: 20px;
  font-family: 'Raleway';
  font-size: 25px;
  color: #ab6060;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 2px;
  border: 1px solid #ab6060;
  border-radius: 10px;
}

.project:hover {
  cursor: pointer;
}