*, *::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: 200px 1fr 2rem;
  height: 100vh;
}

div#header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  width: 100%;
  position: fixed;
  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: column;
  align-items: center;
  row-gap: 5px;
}
div#header div.user img {
  height: 50px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 rgba(68, 72, 79, 0.4);
}

div#content {
  margin-top: 110px;
  margin-left: 1em;
  margin-right: 1em;
  padding-bottom: 5rem;
  min-height: min-content;
}

div#footer {
  text-align: center;
  font-size: small;
  padding: 8px;
  position: fixed;
  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);
}

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 */
