@charset "utf-8";

.about-body-list{
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10%;
    width: 100%;
    max-width: 800px;
}

.about-body-item{
    width: 300px;
}

.about-body-item>a{
    margin: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    border: 2px solid #333;
    border-radius: 20px;
    box-shadow: 0 0 8px gray;
    transition: all 0.6s ease;
}

.about-body-item>a>p{
    font-weight: 600;
}

.about-body-item>a:hover{
    background-color: #CCEDDD;
    transform: scale(1.05);
}