@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: rgb(255, 255, 255);
}

header {
    background-color: rgb(20, 33, 61);
    padding: 20px;
    display: flex;
    align-items: flex-end;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
  }
  
  nav img {
    width: 150px;
    margin-bottom: 10px; 
  }
  
  .nav-links {
    text-align: right;
  }
  
  .nav-links ul {
    margin: 0;
    padding: 0;
  }
  
  .nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  }
  
  .nav-links ul li a {
    text-decoration: none;
    font-size: 16px;
    color: rgb(252, 163, 17);
  }
  
  .nav-links ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgb(252, 163, 17);
    display: block;
    margin: auto;
    transition: 0.5s;
  }
  
  .nav-links ul li:hover::after {
    width: 100%;
  }
  
  

main {
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 16px;
    width: auto;
  }

.main-header{
    text-align: center;
    font-weight: bolder;
}
#about-title h3{
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Popins', sans-serif;
    padding-top: 8px;
}

footer {
    background-color: rgb(20, 33, 61);
    padding: 20px;
    text-align: center;
    color:rgb(252, 163, 17);
}

.about-headshot{
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

#about{
  /* background-color: rgb(229, 229, 229); */
  border: #333 solid;
  border-radius: 15px;
  padding: 16px;
}

#joke{
  color:rgb(252, 163, 17) ;
}

#about-title{
  text-decoration: underline;
}

a{
  text-decoration: none;
}

#programming-languages{
  text-decoration: underline;
}

.projects{
  margin-top: 8px;
  border-bottom: #333 solid;
}

.project-list{
  display: flex;
}

.project-item h3{
  /* text-decoration: underline; */
  text-align: center;
}

.project-heading{
  border-bottom: #333 solid;
}

.project-image-container{
  border-bottom: #333 solid;
}

.project-demo{
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  padding: 8px 0px;

}

.project-item{
  background-color: rgb(229, 229, 229);
  width:400px;
  height: 320px;
  padding: 24px;
  margin:8px;
  border-radius: 16px;
  flex-direction: column;
  overflow: scroll;
}

#emphasis{
  font-weight: bold;
}

.contact-icons{
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons {
  align-items: center;
  margin: 32px;
  width: 32px;
  transition: 250ms;
  opacity: 0.2;
}

.icons:hover{
  opacity: 1;
}

#contact{
  margin-top: 16px;
}