#portfolio-main {
  background-color: #444b60;
  font-family: "Nunito", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
li {
  margin: 0;
}
h2 {
  font-size: 40px;
  color: #dfe0e0;
}

h3 {
  font-size: 25px;
  margin: 0;
}

header {
  z-index: 3;
  background-color: #dfe0e0;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-row {
  z-index: 3;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

#name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#profile-pic {
  z-index: 1;
  position: absolute;
  top: 20px;
  left: -60px;
  display: flex;
  justify-content: center;
}

#profile-pic img {
  border-radius: 50%;
  height: 250px;
}

#links {
  list-style: none;
  color: black;
  text-decoration: none;
  display: flex;
  margin: 0;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  max-height: 50px;
}

#links a {
  font-size: 1.3em;
  color: black;
}

#links a:hover {
  color: #db7d67;
  cursor: pointer;
}

#resume {
  border: 1px solid #dfe0e0;
  border-radius: 5px;
  background-color: #3b415a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfe0e0;
  font-size: 16px;
  height: 50px;
  align-self: top;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

#resume:hover {
  color: #db7d67;
  background-color: #dfe0e0;
}

#about-me {
  border-bottom: 1px solid #dfe0e0;
}

#about-me-text {
  color: #dfe0e0;
  font-size: 1em;
  margin-bottom: 40px;
}

#project-title {
  align-self: center;
  border-bottom: 1px solid #dfe0e0;
}

#projects {
}

.project-item {
  background-color: #3b415a;
  color: #dfe0e0;
  text-shadow: 1px 1px black;
  border: 1px solid #dfe0e0;
  border-radius: 5px;
  height: 100px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  margin: 10px;
}

.project-item span {
  position: relative;
}

.project-item p {
  margin: 0;
  padding: 0;
}

.project-item::before {
  --size: 0;
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #db7d67, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.project-item:hover::before {
  --size: 1000px;
}

#skills-title {
  border-bottom: 1px solid #dfe0e0;
  align-self: center;
}

#skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.skill-list-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  align-items: center;
  font-size: 20px;
  color: #dfe0e0;
  padding: 1em 2em;
  transition: color 0.5s ease;
}

.skill-list-item:hover {
  color: #db7d67;
}

.skill-icon {
  font-size: 4em;
  padding-bottom: 5vh;
}

#contact {
  border-bottom: 1px solid #dfe0e0;
}

#contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#email-icon {
  height: 75px;
  padding-bottom: 45px;
}
