html, body {
  margin: 0 5% 0 5%;
  padding: 0;
  background-color: FloralWhite;
  color: #333;
}
h1 {
	font-family: Alegreya;
	text-align: center;
}

h2, h3 {
	font-family: "Roboto Condensed";
}

p {
	font-family: Roboto;
}

.statusContainer {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, 100px);
}

.MadisonPic {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.MadisonPic img {
	height:200px;
	width: 200px;
}

.StLuciaPic {
	grid-column: 6 / 7;
	grid-row: 1 / 3;
}

.StLuciaPic img {
	height:200px;
	width: 250px;
}

.planeContainer {
	grid-column: 2 / 6;
	grid-row: 2 / 3;
}

#planeStatus {
	height: 100px;
	width: auto;
	display: grid;
	grid-template-columns: repeat(100, 1fr);
	align-self: center;
	justify-self: center;
	background: url("../images/dotted-bar.png") no-repeat center;
}

#planeStatus img {
	height: 100px;
	width: auto;
}

.plane {
	grid-column: 5 / span 1;
	align-self: center;
}

.amountCounter {
	grid-column: 1 / 7;
	grid-row: 3 / 4;
	text-align: center;
}

.peopleContainer {
	display: grid;
	width: 100%;
	grid-template-columns: repeat (4, 1fr);
	grid-template-rows: 100px 100px;
}

.leaderboardBox {
	height: 200px;
	width: 200px;
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	align-self: center;
	justify-self: center;
	background-image: url("../images/Trophy.png");
}

.leaderboardBox p {
    margin-top: 35px;
    text-align: center;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.5;
	font-family: "Roboto Condensed";
}

.MattE {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.KellyE {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.MattS {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.AlexS {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

.personStats {
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: repeat (3, 1fr);
}

.personIMG {
	height: auto;
	width: 100px;
	justify-self: center;
	align-self: center;
	grid-column: 1 / 2;
}

.name {
	grid-column: 2 / 3;
	justify-self: center;
	align-self: center;
}

.workoutNum {
	grid-column: 3 / 4;
	justify-self: center;
	align-self: center;
}

.amount {
	grid-column: 4 / 5;
	justify-self: center;
	align-self: center;
}