* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #eee;
}

content {
	width: 100%;
	height: 80vh;
	padding-top: 42px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1 {
	color: #2baaee;
	font-size: 3em;
	font-weight: 400;
	margin-top: 40px;
	margin-bottom: 40px;
}

section {
	width: 58%;
	display: flex;
	box-shadow: -4px 4px 20px rgba(0, 0, 0, 15%);
}

section > * {
	border: none;
}

input {
	width: 100%;
	height: 64px;
	padding: 0 30px;
	font-size: 17px;
	outline: none;
	border-radius: 0;
	background-color: white;
}

::placeholder {
	color: #333;
}

button {
	width: 74px;
	background-color: #5CBEF1;
	color: white;
}

button:hover {
	cursor: pointer;
	background-color: white;
	border: 2px solid #5CBEF1;
	color: #5CBEF1;
}

article {
	margin-top: 32px; 	
	width: 100%;
	background-color: white;
	padding: 30px;
	box-shadow: -4px 4px 20px rgba(0, 0, 0, 15%);
}

p,td {
	color: #444;
	font-size: 14px;
	font-weight: 200;
}

table {
	box-shadow: -4px 4px 20px rgba(0, 0, 0, 15%);
	width: 100%;
	border-bottom: 3px solid #009688;
}

tr:nth-child(even) {
	background-color: #eee;
}

td {
	height: 50px;
	padding-left: 20px;
}

strong {
	color: #333;
	font-size: 18px;
	font-weight: bold;
}
header {
	margin-top: 533px;
}

footer {
	/* height: 305px !important; */
}

@media (max-width: 576px){
	footer {
		height: 900px !important;
	}
	content {
		padding-top: 40px;
	}

	section, article {
		width: 90% !important;
	}

	strong {
		font-size: 15px;
	}

	.f-mod {
		margin-top: 424px;
	}

}