@import url("https://fonts.googleapis.com/css2?family=Roboto:&display=swap");

      body {
        background-color: #000;
      }
      #header {
        width: 100%;
        height: 5%;
      }
      #header > a > img {
        width: 100%;
      }
      #header > h1 {
        color: white;
        font-size: 500%;
        font-family: "Roboto", sans-serif;
        margin-top: 0px;
        /* margin-left: 27px; */
        width: 100%;
        text-align: center;
      }
      #header > h2 {
        color: white;
      }
      #middle {
        color: white;
        display: block;
        width: 100%;
        height: 50%;
        /* margin: 200px; */
        margin-left: 25px;
		margin-bottom: 50px;
        font-family: "Roboto", sans-serif;
      }
      #middle > button {
        color: white;
        font-size: 125%;
        background-color: black;
        border: 1px solid #333;
        border-radius: 15px;
        width: 250px;
        height: 75px;
      }
      #middle > button > a {
        color: white;
        text-decoration: none;
      }
      #middle > ul {
        list-style-type: none;
      }
      #middle > ul > li {
		float: left;
        width: 375px;
        height: 150px;
		margin-left: 20px;
		margin-bottom: 75px;
        border: 1px solid #333;
        border-radius: 25px;
        background-color: #37373B;
      }
      #middle > ul > li > img {
        width: 135px;
        height: 135px;
        float: left;
        margin-top: 8px;
        margin-left: 8px;
      }
      #middle > ul > li > div {
        width: 200px;
        float: left;
        font-size: 75%;
        margin: 10px;
      }
      #middle > ul > li > div > a {
        color: white;
        font-weight: 0;
        text-decoration: none;
      }
      #footer {
        width: 100%;
		left: 0px;
		bottom: 0px;
		text-align: center;
        color: white;
        position: fixed;
		background-color: black;
        font-family: "Roboto", sans-serif;
      }