@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

#root {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#root .header-logo {
  height: 50px;
}

.footer {
  border-top: 1px solid rgb(236, 239, 241);
  background-color: #444355;
  min-height: 60px;
}

table {
  width: 100%;
}

table th {
  text-align: left;
}

a {
  color: #e6007e;
  text-decoration: none;
}

* {
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 1200px) {
  #root .header-logo {
    height: 36px;
  }
}