/* Content */

.content {
  display: flex;
  height: 100vh;
  flex-direction: row;
  margin-left: 60px;
  padding-top: 20px;
}

/* Title section */

.title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-top: 0;
  padding-left: 10px;
}

.title-section .title-matthew {
  color: aqua;
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 5rem;
}

.title-section .title-about {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
}

/* Shortcuts */

.shortcut-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 75px;
}

.shortcut-list li {
  margin-bottom: 20px;
}

.shortcut-list a {
  text-decoration: none;
  color: white;
  font-size: 2rem; 
}

/* Scrollable section */

.scrollable-section {
  flex-basis: 55%;
  overflow-y: auto;
  padding: 0 16px 0 38px;
  margin-left: auto;
  margin-right: 4px;
  margin-top: 30px;
  height: calc(100vh - 148px);
  box-sizing: content-box;
  font-size: 3rem;
}

.scrollable-section::-webkit-scrollbar {
  width: 8px;
}

.scrollable-section::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.scrollable-section::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
