@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 15px;
}
body {
  background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
  margin: 0;
}
table {
  border: 0px solid black;
  border-radius: 1rem;
  overflow: hidden;
  border-collapse: collapse;
  background: white;
}
table,
thead {
  width: 100%;
}
thead {
  background-color: #362f4b;
  color: white;
}
th,
td {
  text-align: center;
  height: 35px;
  font-weight: normal;
  padding: 0 25px;
}
.container {
  width: 80vw;
  margin: 10px 10vw;
  height: auto;
}
.pages {
  margin: auto;
  margin-top: 20px;
  border-radius: 0.2rem;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
tr {
  outline: 1px solid #362f4b3a;
}

a {
  border: solid 1px rgba(0, 0, 0, 0);
  border-radius: 0.2rem;
  color: #3d3d3d;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  padding: 0.5rem 0.9rem;
  background-color: white;
  margin: 2px 3px;
}
a:hover {
  background-color: #362f4b88;
  border-color: white;
  color: white;
}
a.active {
  background-color: #362f4b;
  border-color: white;
  color: white;
}

@media only screen and (max-width: 630px) {
  * {
    font-size: 12px;
    word-wrap: break-word;
  }
  th,
  td {
    padding: 0 5px;
  }
  .container {
    width: 94vw;
    margin: 10px 3vw;
  }
}
