.btn-radius{
    background-color:aquamarine;
    display:inline-black;
    padding:10px
    
}
/* A. 角丸ボタン */
.btn-radius{
      background-color:aquamarine;
  color: #fff;
  border-radius: 30px;

}
/* A. 枠線のみボタン */
.btn-outline {
    background-color:transparent;
  color:aqua;
  border:2px solid aqua;
}
/* C. 色が変わるボタン */
.btn{
    background-color:cornflowerblue;
    color:#fff;
    transition:background-color 0.3s; /* 色の変化を滑らかにする */
}
.btn-hover:hover {
  background-color:azure;
  color: #333;
  }
  /*プロフィールカード全体の箱 */
  .profile-image{
    width:30%;
    background-color:darkgrey;
    color:deepskyblue;
    font-weight:bold;
    text-align:center;
    padding-top:120px;
    padding-bottom: 120px;
    box-sizing: border-box;
  }