@import url("https://fonts.googleapis.com/css2?family=Foldit:wght@100&family=Montserrat:ital,wght@0,100;0,400;0,700;1,400&display=swap");

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #dfe2e9;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  animation: fadeIn 5s ease-out forwards;
}


/* 
  header {
    background-color: #333; 
    text-align: center;
    position: sticky;
    top: 0;
    min-width: 100dvw;
  } */
  
  /* a {
    color: #c8cbde; 
    text-decoration: none; 
  }
  

  a:visited {
    text-decoration: none; 
  }
   */

  /* .navbar {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .navbar li {
    display: inline;
    margin-right: 20px;
  } */
  
  .social_links {
    display: flex;
    justify-content: center;
  }
  
  .social_links_img {
    width: 30px; 
    margin: 0 10px; 
  }
  
  .intro_section {
    flex: 1;
  }
  
.intro_section {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.intro_section_info {

    padding: 10%;
    text-align: center;
    max-width: 60dvw;
    height: 35dvh;
    font-size: 3rem;
}

.intro_section_info h3 {
    margin-bottom: 5%;
}

.intro_section_info p {
    font-size:1.5rem;
    margin:0%
}

.social_links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  
  .social_links li {
    margin: 0 10px;
  }
  
  .social_links img {
    width: 40px; 
    height: auto; 
  }

  .resume-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #333;
    color: #c8cbde;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s; 
}

.resume-button:hover {
    background-color: #c8cbde; 
    color: #333; 
}

.intro_section_info {
    opacity: 0;
    animation: fadeIn 5s ease-out forwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}


.employment_education {
    display: flex;
    justify-content: space-evenly;
}

.employment_education h1 {
    text-align: center;
}

.ed_subtitle,
.ed_description {
margin: 0;
}

.education_container,
.employment_container {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.employment,
.education {
    display: flex;
    margin-bottom: 2rem;
}

.employment img,
.education img {
    max-width: 20%;
    height: auto;
    max-height: 100px; 
}

.ed_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.ed_title {
    margin-bottom: 20px;
}


.my_projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;

}

.project_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 30%;
  padding-bottom: 20px;
  border-radius: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 1); 
}

.project_title {
  display: flex;
}

.project_title h4 {
  text-decoration: underline; 
}

.my_projects a {
  text-decoration: none; 
  color: inherit;
}

.my_projects a:visited {
  color: inherit; 
}


.technologies {
  text-align: center; 
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center; 
  padding: 20px; 
}

  .technologies h2 {
    width: 100%; 
    margin-bottom: 20px; 
  }

  .technologies ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
  }

  .technologies li {
    background-color: #333; 
    padding: 15px; 
    margin: 10px; 
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .5); 
    color: #c8cbde;
  }


  @media only screen and (max-width: 600px) {
    .intro_section_info {
        padding: 5%;
        max-width: 80vw;
        font-size: 2rem;
    }

    .social_links img {
        width: 30px;
        height: auto;
    }

    .employment_education,
    .employment_container,
    .education_container {
        flex-direction: column;
        max-width: 100%;
    }

    .employment,
    .education {
        flex-direction: column;
        align-items: center;
    }

    .employment img,
    .education img {
        max-width: 50%;
        max-height: 80px;
    }

    .ed_wrapper {
        align-items: center;
    }

    .my_projects {
        flex-direction: column;
    }

    .project_info {
        width: 80%;
    }

    .technologies h2 {
        font-size: 1.5rem;
    }

    .technologies li {
        padding: 10px;
        margin: 5px;
        font-size: 0.8rem;
    }
}