*{
	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;
	box-shadow: 8px 8px 2px 1px rgba(0, 0, 255, .2);
	cursor: pointer;
}
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;
}
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;
	visibility: hidden;
}
.problem{
	margin-top: 50px;
}
.img{
	display: block;
	height: 50px;
	width: 50px;
	background-size: cover;
}
span{
	color: red;
}
footer{
	text-align: center;
	margin: 50px;
}
