/** Fonts **/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz@8..144&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

li {
  margin: 15px 0px;
}

ul {
  margin: 0;
  padding: 0;
}

.page{
  width: 100%;
  min-height: 500px;

  padding-top: 10px;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;

}

.pic-and-bio{
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.pic{
  width: 40%;
  min-width: 300px;
  max-width: 500px;

  min-height: 250px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.about-me-pic{
  border: 4px solid rgb(92, 92, 92);
  width:90%;
  border-radius: 20px;

  margin: 10px;

  pointer-events: none;
}

.bio-and-title{
  width: 60%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.bio-title{
  width: 100%;
  height: 20%;
  min-width: 300px;
  min-height:60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title{
  font-family: 'Dancing Script', cursive;
  font-size: 350%;
}

.bio{
  min-width: 300px;
  max-width: 95%;
  margin: 10px;
}

.paragraph-text{
  font-family: 'Roboto Flex', sans-serif;
  font-size: 16px;
  text-align: left;
}

.edu-doc-fact{
  padding-top: 20px;

  width: 90%;

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

.education-and-title{
  max-width: 40%;
  min-width: 300px;
}

.documents-and-title{
  max-width: 40%;
  min-width: 300px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.fun-facts-and-title{
  max-width: 40%;
  min-width: 300px;
}

.sub-title-container{
  min-height:60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sub-title{
  font-family: 'Dancing Script', cursive;
  font-size: 250%;
}

.li-icon-box{
  height: 100%;
  margin-right: 10px;
}

.li-icon{
  pointer-events: none;

  width: 30px;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-hover{
  width: 30px;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: transform .2s;
}

.icon-hover:hover {
  transform: scale(1.6);
}

.item-no-bullet-point{
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hyperlink, .hyperlink:focus, .hyperlink:active{
  text-decoration: underline;
  color: inherit;
}

.hyperlink:hover{
  text-decoration: underline;
  text-decoration-color: rgb(232, 166, 225);
  color: rgb(232, 166, 225);
}
