@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #bbdefb;
}

#header {
  max-width: 1050px;
  margin: 25px auto;
  margin-bottom: 25px;
}

#footer {
  margin: 25px;
  text-align: center;
}

table {
  margin: 0 auto;
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: black;
}

.ok {
  background-color: #a5d6a7;
}

.nope {
  background-color: #ef9a9a;
}

.optional {
  background-color: #ffcc80;
}

.required {
  background-color: #a5d6a7;
}

.unsupported {
  background-color: #ef9a9a;
}
