/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  font-family: 'Helvetica', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  padding-top: 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  z-index: 10;
}

.logo-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.logo {
  width: auto;
  max-width: 650px;
  height: auto;
  padding: 5px;
}

@media screen and (max-width: 650px) {
  .logo {
    width: 100%;
  }
}

nav {
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 0.5rem;
}

nav ul li a {
  display: inline-block;
  padding: 1rem 0;
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #666;
}

/* Main Content Styles */
main {
  min-height: calc(100vh - 60px);
  padding-bottom: 4rem;
  justify-content: center;  
}

  /* Footer Styles */
  .fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  footer {
    background-color: #f9f9f9;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
  }

  .social-icons {
    display: flex;
    justify-content: center;
  }

  .social-icons a {
    color: #222;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #666;
  }


  .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: .2rem; /* Add this line */
    width: 100%; /* just added */
}

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: .2rem; /* Add this line */

  }

  .about-container img {
    max-width: 500px;
    max-height: 666px;
    width: 100%;
    height: auto;
  }

  .about-text {
    max-width: 600px;
    width: 100%;
  }

  .about-container p {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  @media (min-width: 1068px) {
    .about-container {
      flex-direction: row;
      text-align: left;
    }

    .about-container img {
      margin-right: 2em;
    }
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  
  @media (min-width: 1068px) {
    .about-container {
      flex-direction: row;
      text-align: left;
    }
  
    .about-container img {
      margin-right: 2em;
    }
  }

  .main-text {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    padding-top:100px;
  }

  .centered-image {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  
  