/* About Me and Recent News sections */

.info_container {
  width: 100vw;
  height: 80vh;
  padding: 15vh 0 15vh 0;
  display: flex;
  justify-content: center;
}

.about {
  padding: 10px 20px 20px 20px;
  border-radius: 10px;
  width: 80vw;
  box-shadow: 5px 10px 25px rgb(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
}

.about h2, .recent h2 {
  font-size: xx-large;
  padding: 10px 10px 10px 0px;
  margin-bottom: 30px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.about-image img {
  height: 80%;
  width: 80%;
  border-radius: 10px;
  object-fit: cover;
}

.about-me-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Skills Section */
.skills {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.skills h2 {
  margin: 5vh 0 0 0;
  display: flex;
  justify-content: center;
  font-size: calc(30px + 2vw);
}
.skill_container {
  display: flex;
  justify-content: space-evenly;
}

.skill_container img {
  width: 10vw;
  height: 10vw;
  object-fit: cover;
  border-radius: 50%;

  box-shadow: 0px 0px 25px rgb(241, 90, 36, 0.4);
}

.skill_description {
  display: flex;
  justify-content: space-around;
}

.skill_cell {
  text-align: center;
  max-width: 20vw;
  height: auto;
  padding: 25px;
  border-radius: 10px;
  margin: 5vh 0 5vh 0;
  box-shadow: 5px 10px 25px rgb(0, 0, 0, 0.2);
}

.skill_cell h3 {
  font-size: large;
}

.skill_cell img {
  width: 5vw;
  height: auto;
}

/* Responsiveness Stuff */

@media screen and (max-width:769px) {

  .about-image {
    display: none;
  }

  .about-me-info {
    width: 100%;
  }

  .about-me-info h2 {
    font-size: large;
  }

  .info_container {
    flex-direction: column;
    margin-left: 5vw;
    max-width: none;
    width: 80vw;
    padding-top: 10vh;
  }

  .skills {
    margin-top: 30vh;
  }

  .skill_description {
    flex-direction: column;
  }

  .skill_cell {
    margin-left: 5vw;
    max-width: none;
    width: 80vw;
    font-size: 20px;
  }

  .skill_cell h3 {
    font-size: 24px;
  }

  .skill_container {
    display: none;
  }
}