html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
}

header {
  height: 100px;
  padding: 15px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f1f1f1;
}

header img {
  height: 100%;
  margin: auto;
}

section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section div {
  border: 1px grey solid;
  padding: 20px;
  margin: auto;
}

section div td {
  width: 50px;
  height: 50px;
}

section div td img {
  width: 50px;
  height: 50px;
  padding: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  font-size: 1rem;
  background-color: black;
  margin-top: 50px;
}

footer ul {
  padding: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
}

footer ul li {
  color: white;
  padding: 20px;
}
/*# sourceMappingURL=style.css.map */