*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  font-size: 16px;
  color: rgb(68, 72, 79);
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  overflow: hidden;
}

div#header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: 100%;
  background-color: white;
}
div#header div.logo img {
  height: 80px;
}
div#header div.title {
  font-size: 2rem;
}
div#header div.user {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}
div#header div.user div.user-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
div#header div.user img {
  height: 75px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 rgba(68, 72, 79, 0.4);
}

div#content {
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

div#footer {
  text-align: center;
  font-size: small;
  padding: 8px;
  bottom: 0;
  float: left;
  background-color: rgb(90, 125, 160);
  color: #fff;
  width: 100%;
  overflow: hidden;
}
div#footer a, div#footer a:visited, div#footer a:hover, div#footer a:active, div#footer a:focus {
  color: #fff;
  text-decoration: none;
}

button, .button {
  text-decoration: none;
  padding: 5px 10px;
  background-color: rgb(90, 125, 160);
  border: none;
  color: #fff;
  border-radius: 12px;
  box-shadow: 5px 5px 5px 0 rgba(68, 72, 79, 0.4);
}
button:active, .button:active {
  box-shadow: 1px 1px 1px 0 rgba(68, 72, 79, 0.4);
  transform: translateY(4px);
}
button.logout, .button.logout {
  background-color: rgb(139, 54, 52);
}

div.error img.warning {
  float: left;
  height: 250px;
  margin-right: 20px;
  filter: invert(10%) sepia(100%) saturate(7482%) hue-rotate(2deg) brightness(91%) contrast(108%);
}

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