@charset "utf-8";
/* CSS Document */

/*SMARTPHONES*/
@media only screen
and (max-device-width : 1024px)
{
/* Styles */
	
.ReviewsContainer {
	color: white;
	font-size: 40px;
	width: 80%;
	margin-left: 100px;
	opacity: 0;
	text-align: center;
}
.Reviews {
	color: lightgreen;
}
.ReviewsContainer p {
	width: 100%;
	text-align: justify;
}
.ReviewsContainer a {
	text-decoration: none;
	color: greenyellow;
}

}
	
/*LAPTOP/DESKTOP*/
@media only screen
and (min-device-width : 1025px) {
/* Styles */

	
.ReviewsContainer {
	color: white;
	font-size: 20px;
	width: 90%;
	min-width: 900px;
	margin: 50px 20px 50px 20px;
	opacity: 0;
}
.Reviews {
	color: lightgreen;
}
.ReviewsContainer p {
	width: 900px;
}
.ReviewsContainer a {
	text-decoration: none;
	color: greenyellow;
}

}