* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
}

html,
body,
#main {
  height: 100%;
  background-color: rgb(55, 55, 55);
}

#main {
  display: flex;
  flex-direction: row;
}

ul {
  list-style: none;
}

.nav-left {
  display: flex;
  flex-direction: column;
  background-color: rgb(35, 35, 35);
  width: 224px;
  height: 100%;
  align-items: center;
}

.nav-item {
  font-size: 25px;
  margin: 10px;
  text-decoration: none;
  color: white;
  text-align: center;
  word-wrap: none;
}

.nav-item:first-child {
  margin-top: 1rem;
}

.nav-a {
  text-decoration: none;
}

.nav-a:hover{
  border-bottom: 3px solid white;
}

.nav-img {
  border-radius: 25px;
  height: 85.3px;
  width: 85.3px;
  margin-top: 1.2rem;
}

.short-desc {
  margin-top: 2.5rem;
  margin-left: 5rem;
  font-size: 50px;
}

@media (max-width: 450px) {
  .short-desc {
    text-align: center;
    font-size: 20px;
    margin-left: 1rem;
  }
}
