﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

*{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

body{
	background: #ececec;
}

section{
	position: relative;
	left: 50%;
	top: 20px;
	max-width: 800px;
	background: white;
	box-shadow: 0px 0px 10px #55555522;
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	transform: translate(-50%, 0);
	margin-bottom: 200px;
}

section img#logo{
	height: 100px;
	margin-top: 20px;
}

section h1{
	margin-top: 20px;
	color: #393939;
	font-size: 40px;
}

section h2 {
	font-size: 16px;
	color: #A3A3A3;
}

section #images{
	display: flex;
	flex-direction: row;
	margin-top: 40px;
}

section #images img{
	margin: 0;
	width: calc( (100% - 30px) / 4);
	display: block;
	border-radius: 5px;
	margin-left: 10px;
}

section #images img:first-child{
	margin-left: 0px;
}

section p{
	margin-top: 50px;
	width: calc(100% - 160px);
	margin-left: 80px;
	margin-right: 80px;
	text-align: justify;
	color: #393939;
	margin-bottom: 20px;
}