@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  height: 100%;
  background-color: white;
  border: 1.5rem solid #dab0d3;
}

.grid {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "header header" "left right";
}

.header {
  grid-area: header;
}

.left {
  grid-area: left;
}

.right {
  grid-area: right;
  justify-items: center;
}

.figure-left {
  float: left;
}

.figure-right {
  float: right;
}

.figure-center {
  margin-bottom: -2rem;
  height: 25%;
  width: 50%;
}

.affluence-group {
  display: flex;
  max-height: 24%;
  align-items: center;
  padding-bottom: 2%;
}

.logo {
  margin-left: 3rem;
  margin-top: 1.5rem;
  width: auto;
  height: auto;
  float: left;
}

.logo img {
  width: 75%;
  height: auto;
}

.question {
  align-self: center;
  margin-left: 25%;
  margin-right: 25%;
}

.question .text {
  color: #ffffff;
  background-color: #a99f95;
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
  display: block;
  font-size: 2vw;
  font-weight: bold;
  padding: 1vw 2.5vw;
  text-align: center;
}

.occupancy-heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #a99f95;
  font-size: 4vw;
  font-weight: bold;
  line-height: 5rem;
  margin-bottom: 1vw;
  justify-self: center;
}

.occupancy-heading .highlight {
  color: #552756;
}

.occupancy-heading .large {
  font-size: 6vw;
}

.level {
  color: white;
  font-size: 2vw;
  font-weight: bold;
  margin-right: 0.5vw;
  align-self: center;
  justify-self: left;
  height: 100%;
  padding-left: 2%;
  padding-right: 2%;
}

.location {
  color: #552756;
  font-size: 1vw;
  font-weight: bold;
  justify-content: center;
  align-self: center;
  margin-left: auto;
}

.occupancy-donut {
  margin: 0;
  margin-bottom: -2rem;
  height: 25%;
  width: 80%;
}

.occupancy-div {
  margin-left: 19%;
}

.affluence-donut {
  margin: 0;
  margin-bottom: -2rem;
  max-height: 25%;
  width: 23%;
}
