h1 {
	text-align: center;
	font-size: 36px;
	font-weight: bold;
}

body {
	/*background-image: url('wallpaper.jpg');*/
}

#title-container {
	display: block;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.table-container, #comments {
	text-align: center;
	justify-content: center;
	align-items: center;
}

#leaders {
	display: inline-block; 
	
}

.table-container {
	margin-top: 42px;
}

table, th, td {
	border: 1px solid black;
}

td,th {
	padding: 4px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

#comments table {
	max-width: 80%;
	display: inline-block;
}

#cabin {
	text-align: center;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 400px;
	margin-top: 12px;
}

#cabin-background {
	display: inline-block;
	width: 600px;
}

#resident-image {
	position: absolute;
    left: calc((100vw - 600px) / 2 + 100px);
    bottom: 0;
    height: 272px;

}

#cabin-resident-message {
	text-align: center;
}

#wtf {
	width: 100%;
	margin-top: 32px;
	margin-bottom: 66px;
	text-align: center;
}

#wtf p {
	width: 80%;
	text-align: justify;
	margin-left: 10%;
}

@media only screen and (max-width: 428px) {
	h1 {
		font-size: 24px;
	}

	#cabin-background {
		width: 360px;
	}

	#cabin {
		height: 240px;
	}

	#resident-image {
		height: 156px;
	    left: calc((100vw - 360px) / 2 + 80px);
	}
}