@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;800&display=swap");
body {
  font-family: 'Fira Sans', sans-serif;
  text-align: center;
  font-size: 12px;
  color: #222;
  max-width: 1500px;
}

#menu {
  max-width: 290px;
}

#main {
  display: block;
  position: relative;
  top: 0px;
  z-index: 100;
}

#main h1 {
  margin: 0px;
}

#main p {
  font-size: 11pt;
  text-align: left;
}

#main img {
  max-width: 100%;
  max-height: 100%;
}

.image {
  overflow: auto;
}

img.image {
  max-width: 100%;
  height: auto;
}

#latest h1 {
  padding-top: 20px;
  padding-left: 30px;
  text-align: left;
  font-weight: 400;
}

#latest h1 span {
  color: #890C58;
  font-weight: 800;
}

.button {
  font-size: large;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  background-color: #222;
}

.button span {
  color: #890C58;
  font-weight: 800;
}

.raw {
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (min-width: 600px) {
  body {
    margin: auto !important;
  }
  #content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    -ms-grid-rows: (auto)[2];
        grid-template-rows: repeat(2, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  #header-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
  }
  #menu {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
  #main {
    max-width: 1000px;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 3 / 3;
    overflow: hidden;
  }
  .button {
    line-height: 3em;
  }
  #content {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  body {
    margin: 0;
    width: 100%;
    height: 1px;
  }
  footer {
    padding: 10px;
    position: fixed;
    bottom: 0px;
    z-index: 102;
    width: 100%;
    font-size: xx-large;
    font-weight: 800;
    background-color: #fff;
  }
  footer a {
    margin: 10px;
    color: #890C58;
    text-decoration: none;
  }
  #main {
    height: 100vh;
  }
  #main.hide {
    -webkit-animation: hide 0.4s;
            animation: hide 0.4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  #main.show {
    height: 0px;
    opacity: 0;
    -webkit-animation: show 0.4s;
            animation: show 0.4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  @-webkit-keyframes hide {
    from {
      height: auto;
      opacity: 100%;
    }
    to {
      height: 0px;
      overflow: hidden;
      opacity: 0;
    }
  }
  @keyframes hide {
    from {
      height: auto;
      opacity: 100%;
    }
    to {
      height: 0px;
      overflow: hidden;
      opacity: 0;
    }
  }
  @-webkit-keyframes show {
    from {
      height: 0px;
      overflow: hidden;
      opacity: 0;
    }
    to {
      height: auto;
      opacity: 100%;
    }
  }
  @keyframes show {
    from {
      height: 0px;
      overflow: hidden;
      opacity: 0;
    }
    to {
      height: auto;
      opacity: 100%;
    }
  }
}
/*# sourceMappingURL=main.css.map */