#intro-index{
    display: flex;
    margin: 0 5%;
    justify-content: space-between;
}

#intro-illu{
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro-illu>img{
    width: 100px;
    height: 100px;
}

#intro-text{
    display: flex;
    flex-direction: column;
}

#intro-text>.title{
    font-size: x-large;
}

#detail-part{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#detail-part .title{
    font-size: x-large;
    font-weight: bolder;
}

#detail-part .desc{
    font-size:large;
    padding-bottom: 1em;
}

#detail-part *{
    margin: 1%;
}

#detail-part>div{
    width: 75%;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    border-radius: 3em;
    padding: 0.5em;
}

#detail-part>div>img{
    border-radius: calc(2.5em - 1%);
    max-height: 15em;
    width: max-content;
}

#detail-part>div>p{
    text-align: justify;
}

#detail-part>div:hover{
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    background-color: whitesmoke;
}

#detail-part>div:nth-child(2n){
    text-align: right;
}