* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 300;
  a {
    color: white;
    text-decoration: none;
  }
}
body {
  background: #222222;
  min-height: 100vh;
  color: white;
  div.frontpage {
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    h1 {
      font-size: 4em;
    }
  }
  div.menuheader {
    width: 100vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    h2 {
      font-size: 2em;
    }
  }
  div.menu {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    div.options {
      display: grid;
      grid-template-columns: repeat(
        auto-fill,
        minmax(300px, 3fr)
      );
      justify-content: center;
      width: 80vw;
      gap: 20px;
      > a {
        width: 320px;
        height: 320px;
        > div {
          margin: 20px;
          width: 250px;
          height: 250px;
          border-radius: 5px;
          outline: 2px solid white;
          padding: 15px;
          box-shadow: 0 0 5px 3px white;
          h3 {
            font-weight: 600px;
            font-size: 1.6em;
            text-align: center;
            margin: 10px;
          }
          p {
            font-size: 1.1em;
          }
        }
      }
    }
  }
}
