*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
}
.logo{
	margin: 50px;
	height: 50px;
	width: auto;
}
h1, h2, h3{
	text-align: center;
}
.wrapper{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	margin: 0 auto;	
}
table{
	display: block;
	border-spacing: 0;
	margin-top: 15px;
	margin-bottom: 15px;
}
table,
th,
td {
    border: 1px solid;
}
th {
  background-color: #04AA6D;
  color: white;
}
th,
td {
	text-align: center;
    padding: 5px 10px;
    border-top-width: 0;
    border-left-width: 0;
	user-select: none;
}
th:last-child,
td:last-child {
    border-right-width: 0;
}
tr:last-child td {
    border-bottom-width: 0;
}
tbodys tr:nth-child(3) td{
	background-color: orange;
}
button{
	display: block;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100px;
	height: 50px;
	font-size: 14px;
	border: 4px double;
	border-radius: 20px;
	background: black;
	color: white;
}
.img{
	display: block;
	height: 50px;
	width: 50px;
	background-size: cover;
}
footer{
	margin: 50px;
	text-align: center;
}

