@charset "utf-8";
/* CSS Document */

body{
    margin:0;
    padding:0;
	font-family: 'Lora', serif;

}


#top{
    background-color: white;
    text-align: center;
    height: 150px;
/*    color:gold;*/
/*    border-bottom: 6px solid #053C99;*/
/*    padding-left: 60px;*/
    padding-top: 5rem;
	padding-bottom: 20px;
}

#title{
    text-align: center;
    font-size: 40px;
    text-shadow: 2px 2px 3px grey;
}

.textwrapper{
/*	border: solid 2px pink;*/
    max-width:1200px;
	margin: 0 auto 150px auto;
    display:flex;
    flex-flow:wrap;
    justify-content:center;
   }

.textwrapper a {
	text-decoration: none;
    color:black;
}

.subwrapper{
/*	border: solid 5px gold;*/
    font-weight: 500;
    background-color: lightgoldenrodyellow;
	padding: 1.5vw;
	margin: 20px;
	max-width: 400px;
	min-width: 280px;
	max-height: 280px;
	min-height: 200px;
	text-align: center;
	border-radius: 15px;
	font-size: 20px;
}

.subwrapper: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;
    background-color: gold;
}

.subwrapper p{
	font-size: 16px;
	color: dimgrey;
    border-top: solid 2px grey;
    padding-top: 1vw;
    text-align:left;
}
