* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #00000;
    color: white;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0a0a0a;
  }
  .logo {
    font-weight: bold;
    font-size: 2.5rem;
    font-family: 'Style Script';
  }
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .social-icons {
    position: relative;
  }
  .social-icons a {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px;
    background: #0a0a0a;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Poetsen One';
  }
  .hero .subtext {
    margin: 20px 0;
    font-size: 1.2rem;
    max-width: 450px;
    color: #ccc;
  }
  .hero .welcome {
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Poppins';
  }
  
  .gif-wrapper {
    flex-shrink: 0;
    align-self: flex-end;
    padding-left: 40px;
  }
  
  .pacman-gif {
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }
  .resumeinfo {
    z-index: 2;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0px;
  }
  .resumeinfo button::after {
    content: '+  ';
    margin-left: 70%;
  }
  .button-container {
    display: flex;
    justify-content: space-between; 
    margin-bottom: 10px;
  }
  
  .resumeinfo button {
    text-align: left;
    background: transparent;
    color: #ffffff;
    border: 2px solid;
    border-radius: 18px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Gorditas', sans-serif;
    cursor: pointer;
    margin: 0%;
    transition: none;
    width: 30%;
  }
  
  #edu-content,
  #work-content {
    color: #ffffff;
    overflow: hidden;
    max-height: 0;
    font-family: 'Poppins', sans-serif;
    transition: max-height; /* Smooth transition */
    margin-right: 10%;
  }
  
  #edu-content.open{
    margin-left: 2%;
      max-height: 80px;
      overflow: visible;
      text-align: left;
  }
  
  #work-content li{
    list-style: none;
  }
  #work-content.open{
    margin-left: 72%;
    max-height: 80px;
    overflow: visible;
    text-align: left;
    width: 100%;
  }

.about {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  text-align: left;
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 22px;
}

.about-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.about-images {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-images img {
  width: 260px;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
}

#Photo1 {
  top: 0;
  right: 0;
}

#Photo2 {
  bottom: 0;
  left: 0;
}

.about-text {
  color: white;
  text-align: center;
  font-family: 'Poetsen One';
  font-size: 1.5rem;
  z-index: 1;
  line-height: 150px;
}

.about-body { 
  display: flex;
  justify-content: space-around;
}
.about-body img{
max-width: 300px;
}

.contact-section {
  padding: 80px 40px;
  background-color: #0a0a0a;
  color: white;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-info a {
  color: #f4c300;
  text-decoration: none;
  font-weight: 500;
}

  @media (min-width: 768px) {
    .hero {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .hero-text {
      max-width: 50%;
    }
  }
