nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-bar{
  margin: 20px;
}
.hero{
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 height: 300px;
}
.hero > p {
  color: grey;
  margin-top: 10px;
}
.hero > h1{
  margin-bottom: 10px;
}
a{
  text-decoration: none;
}
.comic-sans{

  font-family: "Patrick Hand", cursive;
  font-weight: 500;
  font-style: normal;


}

.main-section-one {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
 border-top: 3px solid black;
  border-bottom: 3px solid black;
  width: 100%;
}
.articles{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:1rem;
  margin-left:2rem ;
  margin-right:2rem;
}

#projects > ul{
  list-style-type:none;
  padding-left: 1px;
}

.dash-list{
  list-style-type:none;
   padding-left: 10px;
}
.dash-list li::before{
content: "- ";
}

#experience > article > a{
 margin-bottom: 18px;
 display: inline-block;
}

 #experience{
border-left: 3px solid black;
border-right: 3px solid black;
padding:20px

}
#projects, #education{
  padding:20px;
}
.articles>article{
  border:3px solid black;
  padding:10px;
  border-radius:30%;
  padding: 2rem;

}
#reviews > h2{
margin-left: 20px;
}
.articles > article > p{
  margin-bottom: 2px;
  color: #cccccc;
}
.articles > article > span{
  color: #cccccc;
}
hr{
  height: 3px;
  background-color: black;
  border:none;
}
footer > h3{
  text-align: center;
}

@media (max-width: 768px){
  nav{
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .nav-links{
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .main-section-one{
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .articles{
      display: grid;
      grid-template-columns: 1fr;
      margin: 1rem;
    }
#experience{
  border-left: none;
  border-right: none;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
}

  /* #projects, #experience, #education, #reviews{
    grid-column: auto;
  } */
}

@media (max-width: 768px){
  #projects ul li{
padding: 0.75rem;
background-color: #e9ecef;
  }
    #projects ul hr{
      margin:0;
    }

    #experience > article{
      background-color: #e9ecef;
    }
}

@media (max-width: 768px){
  
  .articles > article{
    border-radius: 12px;
    padding: 1.5rem;
  }
}

@media (max-width: 768px){
  #projects, #experience, #education{
    padding: 1rem;
  }
  #reviews h2{
    margin-left: 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 2rem 1rem;
  }
}
