@font-face {
  font-family: "Rijksoverheid Sans Heading";
  src: url("../fonts/rijksoverheid/rijksoverheidsansheading-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Rijksoverheid Sans Text";
  src: url("../fonts/rijksoverheid/rijksoverheidsanstext-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rijksoverheid Sans Serif";
  src: url("../fonts/rijksoverheid/rijksoverheidserif-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Rijksoverheid Serif";
  src: url("../fonts/rijksoverheid/rijksoverheidserif-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rijksoverheid Sans Text", Arial, sans-serif;
}

body {
  background: #07316e;
  width: 100%;
  height: 100vh;
}
@media (max-width: 480px) {
  body header {
    background: #1f1f1f;
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body header nav {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    background: transparent;
  }
  body header nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  body header nav ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  body header nav ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    height: 22px;
    color: #fff;
  }
  body header nav ul li a i {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 22px;
  }
  body header nav ul li a p {
    font-weight: 600;
    height: 16px;
    font-size: 18px;
  }
  body header nav ul li:last-child {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
  }
  body header nav ul li:last-child button {
    background: none;
    border: none;
    outline: none;
  }
  body header nav ul li:last-child button i {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }
  body .dashboard {
    display: flex;
    flex-direction: row;
    gap: 2px;
    width: 100%;
    height: calc(100vh - 120px);
  }
  body .dashboard .btn-column {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 50%;
    height: 100%;
  }
  body .dashboard .btn-column .btn-action {
    display: flex;
    flex-direction: row;
    height: 25%;
    text-decoration: none;
    cursor: pointer;
  }
  body .dashboard .btn-column .btn-action .btn-info {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    height: 100%;
    width: 40px;
    background: #07316e;
    color: #fff;
  }
  body .dashboard .btn-column .btn-action .btn-info i {
    font-size: 28px;
  }
  body .dashboard .btn-column .btn-action .btn-active {
    background: #1753ad;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body .dashboard .btn-column .btn-action .btn-active i {
    font-size: 60px;
    color: #fff;
  }
  body .dashboard .btn-column .btn-action .btn-active p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-top: 15px;
  }
  body footer {
    background: #1f1f1f;
    width: 100%;
    height: 70px;
  }
}

/*# sourceMappingURL=styles.css.map */
