body {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  /*background-image: url('../images/powergraphic.png');*/
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 2rem;
  color: #334c56;
  width: calc(100vw - 2rem);
}

.logo {
  width: 100%;
  background-image: url('../images/syn_logo_color.jpg');
  background-size: contain;
  background-position: left;
  padding: 1rem 0;
  background-repeat: no-repeat;
  margin: 1rem 0;
}

.content-container {
  margin: 0 auto;
  max-width: 50rem;
}

h1 {
  text-align: left;
  line-height: 2.3rem;
  margin: 0;
  font-size: 2rem;
}

.table-header {
  font-size: 0.8rem;
  color: #334c56;
  font-weight: bold;
}

.table-header,
.results {
  display: grid;
  grid-template-columns: 2fr 6fr 2fr 2fr;
  padding: 0.6rem;
}

.results {
  margin: 0.2rem 0;
  background-color: rgb(249, 249, 249);
  border-radius: 0.4rem;
  border: 1px solid #c2c1c1;
  font-size: 0.8rem;
  transition: 0.3s;
}

.results:hover {
  transition: 0.3s;
  font-weight: bold;
}

.results:nth-of-type(1),
.results:nth-of-type(2),
.results:nth-of-type(3) {
  font-weight: bold;
}

.results:nth-of-type(1) {
  border: 1px solid #ffd700;
  color: #ffd700;
  margin: 0.4rem 0;
}

.results:nth-of-type(1):hover {
  background-color: #fef1d0;
}

.results:nth-of-type(2) {
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  margin: 0.4rem 0;
}

.results:nth-of-type(2):hover {
  background-color: #d8d8d7;
}

.results:nth-of-type(3) {
  border: 1px solid #cd7f32;
  color: #cd7f32;
  margin: 0.4rem 0;
}

.results:nth-of-type(3):hover {
  background-color: #e4b9aa;
}

#table {
  margin: 0 0 2rem;
}

@media screen and (min-width: 756px) {
  body {
    display: grid;
    place-items: center;
    height: auto;
  }

  .content-container {
    padding: 1rem;
    background-color: #ffffffaa;
  }

  .content-container.scroll {
    overflow: auto;
  }

.quit-footer{
  position: fixed;
  bottom: 0;
  left: 0;
  top: calc(100% - 10rem);

}
}
@media screen and (max-width: 576px){
  .quit-footer{
    position: fixed;
    right: 0;
    top: 0;
    left: calc(100vw - 8rem);
  }
}
