@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300&display=swap');
.about h1{
  font-family: 'Abril Fatface', cursive;
  text-align: center;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  width: 150px;
  margin: auto;
  margin-top: 80px;
}
.about img{
  width: 70%;
  display: block;
  margin: auto;
  height: auto;
  margin-top: 20px;
}
.about .content{
  font-size: 14px;
  width: 70%;
  margin: auto;
  padding: 20px 0px;
  color: #000;
  font-family: 'monospace', sans-serif;
  line-height: 30px;
}
@media only screen and (max-width:500px){
  .about .content{
    width: 90%;
  }
  .about img{
    width: 95%;
    height: auto;
    margin: auto;
    display: block;
    margin-top: 10px;
  }
}
