* {
 box-sizing: border-box;
 font-family: 'Lora', serif;
}

#top_title{
    text-align: center;
    font-size: 40px;
	margin: 5rem 0rem 2rem 0rem;
    text-shadow: 2px 2px 3px grey;
}


#introduction{
    font-size:18px;
    max-width:900px;
    margin:auto;
    padding:30px;
}

.main_wrapper{
    max-width:1400px;
    display:flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:10rem;
}


.sub_wrapper{
    width:400px;
    text-align: center;
    margin: 20px auto;
	
}


.pic{
    display:block;
    width:400px;
    height:400px;
    object-fit: contain;
	background-color: black;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.name{
    font-size: 20px;
    background-color: #F0F0F0;
    color:black;
    width:100%;
    text-align: center;
    padding:20px 5px 5px 5px;
    margin: 0 auto 0 auto;
    
}

.detail{
    font-size: 15px;
    padding:0 10px 20px 10px;
    margin:0;
    background-color: #F0F0F0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

a{
    text-decoration: none;
    color:black;
}

