 * {
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
   font-family: 'Montserrat', sans-serif;
}
 header {
   min-height: 50px;
   width: 100%;
   background-color: #212922;
   position: fixed;
   display: flex;
   align-items: center;
   z-index: 100;
}
  footer {
   min-height: 30px;
   width: 100%;
   background-color: #212922;
   display: flex;
   align-items: center;
   justify-content: center;
   position:fixed;
   left:0px;
   bottom:0px;
  }
   h1 {
   margin: 0 20px;
   color: white;
   font-size: 1.3rem;
   font-weight: 600;
}
 h2 {
   color: white;
   font-size: 0.8rem;
   font-weight: 500;
}
 th {
   font-size: 0.9rem;
   font-weight: 500;
 }

 section {
    padding-top: 80px;
    padding-bottom: 80px;
    -ms-flex-preferred-size: auto;
    min-height:100%;
 }

  body {
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

 @media (max-width: 1200px) {
    .container {
        max-width: 970px;
    }
 }

   @media (max-width: 992px) {
    .container {
        max-width: 600px;
    }
 }

   @media (max-width: 650px) {
    .container {
        max-width: none;
    }
 }

 table { 
    overflow: hidden; border-radius: 10px;
    box-shadow: 0 0 1px #000;
}

button {
  margin-left: 16px;
}