body {
  font-family: "Roboto Condensed", Helvetica, Arial;
  font-size: 16px;
}

aside {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  left: 40px;
  padding: 15px 30px;
  position: fixed;
  top: 60px;
}

section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 120px 0 20px;
}

.content {
  width: 80%;
}

.profile-pic {
  border-radius: 50%;
  width: 15%;
}

.mui-list--inline a {
  color: green;
}

/* Portfolio */
.portfolio {
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.portfolio-item {
  background-color: #FAFAFA;
  border: 2px solid green;
  color: green;
  margin-bottom: 30px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
}

.portfolio-item:focus,
.portfolio-item:hover {
  background-color: green;
  border: 2px solid #FAFAFA;
  color: #FAFAFA;
}
.sample-link {
  background-color: green;
  color: #FAFAFA;
  text-transform: capitalize;
}

.portfolio-item:focus .sample-link,
.portfolio-item:hover .sample-link {
  background-color: #FAFAFA;
  color: green;
  text-decoration: underline;
}

footer {
  border-top: 1px solid green;
  margin: 30px 0;
  padding-top: 30px;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 800px) {
  section {
    flex-direction: column;
    margin: 20px auto;
    text-align: center;
  }
  .content {
    width: 100%;
  }
  
  .profile-pic {
    border-radius: 50%;
    margin: 20px auto;
    width: 30%;
  }

  .portfolio {
    align-items: center;
    width: 100%;
  }

  .portfolio-item {
    margin: 0 auto 30px;
  }
}

.links a {
  color: green;
}