/* General Reset */
body, h1, h2, h3, p, ul, li 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

.navbar ul 
{
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar li:first-child 
{
  margin-left: 1rem;
  font-weight: bold;
}

.navbar a 
{
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.navbar a:hover, .navbar a.active 
{
  font-weight: bold;
  text-decoration: underline;
}

  /* MAIN */
  .gallery 
  {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .gallery .row 
  {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .gallery .column img 
  {
    width: 100%;
    border-radius: 5px;
  }

  /* About Section */
.about-section 
{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.about-container 
{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.about-image img 
{
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 5px;
}

.about-text 
{
  flex: 1;
  max-width: 600px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
/* .footer-columns
{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer 
{
  background-color: darkgray;
  padding: 1rem;
  text-align: center;
}

.footer-container 
{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left
{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right .footer-links a 
{
  margin-right: 15px;
  color: inherit;
  text-decoration: none;
}

.footer-right .footer-links i 
{
  font-size: 2rem;
}

.footer-links a:hover 
{
  color: #525151;
}

.footer-right h2 
{
  margin-bottom: 10px;
  font-size: 18px;
} */
/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-right h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-blurb a 
{
  text-decoration: none;
  color: #FFF;
}

.is-rounded
{
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Media Queries */
@media (max-width: 768px) 
{
  .navbar ul 
  {
      flex-direction: column;
      gap: 0.5rem;
  }

  .projects-container 
  {
      grid-template-columns: 1fr;
  }

  .footer-container 
  {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-left, .footer-right 
  {
      margin-bottom: 20px;
  }

  .about-container 
  {
    flex-direction: column; 
    align-items: center;
  }

  .about-text 
  {
    text-align: center;
  }

  .about-image img 
  {
    max-width: 200px;
  }
}



/* DESKTOP MEDIA QUERYS */
@media (min-width: 768px) 
  {
    .gallery .row 
    {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .gallery .column 
    {
      flex: 1;
      margin: 0 0.5em;
    }
    .topnav 
    {
      justify-content: flex-start;
    }
  
    .skills-content 
    {
      display: flex;
      justify-content: space-between;
    }
  
    .skills-content > div 
    {
      flex: 1;
      margin: 0 1em;
    }
  }
  
  @media (min-width: 1024px) 
  {
    body 
    {
      font-size: 1.2rem;
    }
  
    header 
    {
      padding: 2em;
    }
  
    .gallery .row 
    {
      gap: 2em;
    }
  }
/* MOBILE VIEW
body 
{
    margin: 0;
    padding: 0;
  }

  
  /* HEADER */

  /* header .navbar 
  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
  }
  
  header .navbar li 
  {
    margin: 0;
    padding: 0;
  }

  header .navbar li:first-child 
  {
    color: white;
    margin-left: 1em;
  }

  header .navbar-right
  {
    display: flex;
    gap: 1em;
  }
  
  header .navbar li a 
  {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  header .navbar li a:hover, a:active 
  {
    background-color: #111111;
  }
  
  /* MAIN */
/*   
  .gallery 
  {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .gallery .row 
  {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  
  .gallery .column img 
  {
    width: 100%;
    border-radius: 5px;
  } */

  /* ABOUT*/
  
  /* FOOTER */
  /* footer 
  {
      background-color: #f4f4f4;
      padding: 1em;
  }
  
  .footer-container 
  {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }

  .footer-left, 
  .footer-right
  {
    flex: 1;
  }

  .footer-links a
  {
    font-size: 24px;
    margin-right: 10px;
    color: #333;
    text-decoration: none;
  }

  .footer-links a:hover, a:active
  {
    color: #525151;
  }

  .footer-right h2 
  {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .about-blurb a
  {
    text-decoration: none;
    color: #333;
  }

  /* MOBILE */
  /* @media (max-width: 768px) 
  {
    .footer-container 
    {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-left,
    .footer-right 
    {
      margin-bottom: 20px;
    }
  
    .footer-links a 
    {
      font-size: 28px;
    }
  } */
  /* DESKTOP
@media (min-width: 768px) 
  {
    .gallery .row 
    {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .gallery .column 
    {
      flex: 1;
      margin: 0 0.5em;
    } */
    /* 
    .topnav 
    {
      justify-content: flex-start;
    }
  
    .skills-content 
    {
      display: flex;
      justify-content: space-between;
    }
  
    .skills-content > div 
    {
      flex: 1;
      margin: 0 1em;
    }
  }
  
  @media (min-width: 1024px) 
  {
    body 
    {
      font-size: 1.2rem;
    }
  
    header 
    {
      padding: 2em;
    }
  
    .gallery .row 
    {
      gap: 2em;
    }
  
    footer 
    {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .footer-columns 
    {
      display: flex;
      align-items: center;
    }
  }

  @media (max-width: 768px) 
  {
    .footer-container 
    {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left, .footer-middle 
    {
      flex: none;
      width: 100%;
      text-align: center;
      margin-bottom: 1em;
    }
  
    .footer-left 
    {
      justify-content: center;
    } */
  /* } */