* 
{
box-sizing: border-box;
}
body 
{	
display: flex;
justify-content: center;
background-color:white;
font-family: Arial,Sans-serif;
color: black;
}
body > div
{
max-width: 900px;
}
.content
{
flex:auto;
text-align: center;
padding: 20px;
}
.title
{
font-size: 2.8em;
font-weight: bold;
}
.title > a
{
text-decoration:none;
color: black;
}
.subtitle
{
font-size: 1.2em;
font-weight: bold;
color: DarkBlue;
}
.subtitle > a
{
text-decoration:none;
color: DarkBlue;
}
.text
{
font-size: 1em;
color: #707070;
}
.review
{
display:flex;
flex-flow: column;
background-color:#F5DEB3;
border: 1px solid #babad1;
border-radius: 4px;
padding: 10px;
text-align: justify;
}
.review > div
{
text-align: center;
}
/* For tablet: */
@media only screen and (min-width: 600px)
{
	
}

/* For desktop: */
@media only screen and (min-width: 768px)
{
	.title
	{
	font-size: 5em;
	}
	.subtitle
	{
	font-size: 2em;
	color: DarkBlue;
	}
}
