body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;
  padding: 0 20px;            
}

.about h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;
}

.about p{
  font-size: 20px;
  text-indent: 1em;
  margin-bottom: 15px;
  line-height: 2;
}

.profile-link{
  display: inline-block;
  width: fit-content;
  background: papayawhip;
  padding: 10px 16px;
  border-radius: 24px;
  color: darkblue;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid darkblue;
  margin-top: 20px;
  text-align: center;
  line-height: 1.4;
}

.profile-link:hover{
  background: darkblue;
  color:papayawhip;

}

@media (max-width: 1024px){
  .about{
    min-height: calc( 100vh - 50px );
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
  }

  .about h1{
    font-size: 18px;
  }  

  .about p{
    padding-left: 10px;
    font-size: 14px;
    line-height: 2;
  }

}
  
