body{
    margin:0;
    padding:0;
	font-family: 'Lora', serif;
}

#top{
    text-align: center;
    height: 150px;
    padding-top: 5rem;
}

#title{
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 2px 3px grey;
}

#introduction{
/*    border: 2px solid blue;*/
    font-size:18px;
    max-width:1000px;
/*    height: 180px;*/
    margin: 0 auto;
    padding:0px 5% 2rem 5%;
   
}

#main_wrapper{
    max-width:1200px;
    margin:0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
	margin-bottom: 150px;
}

#main_wrapper a {
	text-decoration: none;
}

.sub_wrapper{
    width:220px;
    align-self: center;
    margin: 20px 5px;

}

.pic{
    width:220px;
    height:300px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.button{
    font-size: 22px;
    background-color: gold;
    color:black;
    width:200px;
    height:50px;
    text-align: center;
    padding:20px 10px 20px 10px;
    margin:auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.sub_wrapper:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 14px rgba(50,50,93,.3), 0 3px 6px rgba(0,0,0,.08);
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.5s;
 
}

