/* Intro */
#home .intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

#home p {
  font-size: 20px;
  margin: 5px auto;
}

#home .intro .personal-pic {
  border-radius: 5px;
  width: 320px;
  height: 450px;
}

#home #name {
  font-size: 40px;
  color: #4eaaee;
}

#home #description {
  width: 300px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  #home #name {
    font-size: 25px;
  }

  #home p {
    font-size: 17px;
  }

  #home .info {
    text-align: center;
  }

  #home .intro .personal-pic {
    width: 215px;
    height: 300px;
  }
}

@media screen and (max-width: 550px) {
  #home .intro {
    flex-direction: column;
  }

  #home #name {
    font-size: 22px;
  }

  #home p {
    font-size: 16px;
  }

  #home .info {
    text-align: center;
  }

  #home .intro .personal-pic {
    width: 200px;
    height: 280px;
  }
}

@media screen and (max-width: 300px) {
  #home .intro {
    flex-direction: column;
  }

  #home #name {
    font-size: 16px;
  }

  #home p {
    font-size: 12px;
  }

  #home .info {
    text-align: center;
  }

  #home .intro .personal-pic {
    width: 180px;
    height: 260px;
  }
}
