* { box-sizing: border-box; }

      
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;

        /* changes background */
        background-image: url("https://i.pinimg.com/control1/1200x/01/e8/88/01e888413ec597e3ffd30fd5e735caad.jpg");
        background-color: #131313;

        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;

        /* text color, size, and font */
        color: #dedede;
        font-size: 95%;
        font-family: times new roman, serif;
      }

      /* what everything is put in */
      .container {

        /* color and border */
        background-color: #202020;
        border: solid 1px #474747;

        padding: 20px;
        padding-left: 40px;
        padding-right: 40px;

        margin-left: 15px;
        margin-right: 15px;

        max-width: 700px;
      }

      /* what everything is put in part 2 */
      .containercontent {
        display: grid;
        grid-gap: 15px;
        grid-template:
          "header header"
          "main main"
          "footer footer"
          / 1fr 240px;
      }

      header { grid-area: header; }
      main { grid-area: main; }
      footer { grid-area: footer; }

      .cardcontainer {
        display: grid;
        grid-gap: 15px;
        grid-template:
          "one two"
          / 1fr 1fr;
      }

      columnone { grid-area: one; }
      columntwo { grid-area: two; }

      .card {
        background-color: #131313;

        padding: 15px;
        height: 100%;
      }

      .cardimg {
        background-color: #202020;

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;

        height: 150px;
        margin-bottom: 10px;
      }

      .tag {
        display: inline-flex;
        font-size: 85%;
        padding: 4px 6px;

        border: solid 1px #474747d8;
        border-radius: 20px;

        margin-right: 5px;
        margin-bottom: 5px;
      }





      p {
        margin: 0;
        margin-bottom: 15px;
        line-height: 20px;

        /* feel free to change this */
        text-align: justify;
      }

      /* link text color, remove text decoration if you want to keep the link underline */
      a { color: #97ab8f; text-decoration: none; }

      /* highlight color */
      highlight { background-color: #56684e; }
      
      /* muted text color */
      muted { color: #dedede9c; }
      .muted { color: #dedede9c; }

      /* colored text */
      colored { color: #97ab8f; }
      .colored { color: #97ab8f; }

      /* heading colors */
      h1, h2 {
        color: #97ab8f;
      }

      h3 {
        color: #dedede9c;
      }

      h1, h2, h3 { letter-spacing: .5px; margin-block: 10px; }
      h1 { font-size: 1.94em; }
      h2 { font-size: 1.58em; }
      h3 { font-size: 1.25em; }

      .center { text-align: center; }

      .title {
        text-align: center;
        font-size: 17px;
        font-family: Georgia, serif;
        font-weight: bold;
      }

      ul {
        padding-left: 30px;
      }

      /* divider */
      hr {
        border: solid 1px #474747;
        margin-bottom: 10px;
      }





      /*
      

      CSS to make things mobile friendly


      */

      @media screen and (max-width: 585px) {
        .containercontent {
          grid-template:
            "header"
            "main"
            "footer"
            / 1fr;
        }
      }
