@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html,
body {
  height: 100%; }

body {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif; }

.content {
  flex: 1 0 auto; }

.container {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  overflow: none; }

.app-header {
  background-color: #cc0000;
  box-shadow: 3px 3px 10px #888; }
  .app-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px; }
  .app-header .logo {
    width: 170px;
    margin-bottom: 16px; }
  .app-header input[type='text'] {
    padding: 7px;
    width: 300px;
    border: 0;
    border-radius: 3px; }

.subheader {
  display: flex;
  width: 90%;
  margin: 0 auto 16px auto;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  background-color: #7c0000;
  color: #fff;
  box-shadow: 3px 3px 10px #888; }
  .subheader p {
    margin: 4px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px; }
  .grid .item {
    display: flex;
    flex-direction: column;
    border: 1px #ccc solid;
    padding: 10px;
    box-shadow: 1px 1px 2px #ccc; }
    .grid .item h4 {
      margin-bottom: 5px; }
    .grid .item p {
      font-size: 14px;
      color: #7c0000;
      font-weight: bold;
      margin-bottom: 20px; }
    .grid .item i {
      align-self: flex-end; }

.app-footer {
  flex-shrink: 0;
  background: #f4f4f4;
  color: #444444;
  padding: 10px;
  font-size: 14px;
  margin-top: 10px; }
  .app-footer ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around; }
    .app-footer ul li {
      display: flex;
      flex-direction: column;
      align-items: center; }

#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #cc0000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1s; }
  #splash img {
    width: 300px; }

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr); } }

.fade {
  opacity: 0; }
