/* 

#253237 Jet black
#5C6B73 Blue slate
#9DB4C0 Cool steel
#C2DFE3 Light blue
#E0FBFC Light Cyan
*/

* {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
p,
span {
  color: #253237;
}

p {
  margin-bottom: 1rem;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: #e0fbfc;
}

nav {
  width: 30%;
  padding: 4rem;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

section {
  overflow-y: scroll;
}

main {
  width: 70%;
  height: 100vh;
  overflow-y: auto;
  padding: 4rem;
  box-sizing: border-box;
}

#experiences {
  background-color: #c2dfe3;
}

#projects {
  background-color: #c2dfe3;
}

.left-content {
  height: 100%;
  width: 25%;
  font-size: 20px;
}

.left-content img {
  width: 80%;
  height: auto;
}

.description {
  /* list-style: inside; */
  list-style: inside circle;
}

.description li {
  padding-left: 0;
}

.exp-label {
  background-color: #9db4c0;
}

.experience {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.experience .left-content {
  font-size: 1rem;
  width: 100%;
}

.experience-content {
  min-width: 0;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0;

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlights li {
  background-color: #5c6b73;
  color: #e0fbfc;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (width < 768px) {
  nav {
    display: none !important;
  }
}
