@charset "UTF-8";

.btn-radius{
    background-color:aquamarine;
    display:inline-block;
    width: 200px;
    padding: 15px;
    border-radius: 40px;
    text-align: center;
    text-decoration: none;
    margin: 10px;

}
.btn-outline{
    border : 1px black solid;
    display:inline-block;
    width: 200px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    margin: 10px;

}
.btn-hover{
    background-color:aquamarine;
    display:inline-block;
    width: 200px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    margin: 10px;
}

   .btn-hover:hover { 
      background-color: #0000c4; /* マウスを乗せた時の色 */
  color: #c1d638;
   transition: background-color 0.3s; /* 色の変化を滑らかにする */
}

.profile-card{
    width:350px;
    margin: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;

}
.profile-image {
  width: 100%;
  height: 180px;
  background-color: #eee;
  color: #999;
  font-weight: bold;
  text-align: center;
  padding-top: 80px;
  box-sizing: border-box;
}
.profile-content{
    padding: 20px;
}
.profile-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
  border-bottom: 2px solid #007bff;
}
.profile-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
