body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 10vh;
  margin: 0;
}

p1 {
  font-family: "Lucida Console", "Courier New", monospace;
}

h1  {
  font-family: "Lucida Console", "Courier New", monospace;
}

/* About */
about {
  padding-left: 2%;
}

/* button */

button {
  background-color: #060765;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
}
button:hover {
  background-color: white;
  color: black;
  border: 2px solid #8450eb;
}

@media only screen and (max-width: 600px) {
  button {
    padding: 12px 20px;
    font-size: 10px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Navbar */

navbar {
  background-color: #000f52;
  overflow: hidden;
}

navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Footer  */
footer {
  margin-top: auto;
  position: fixed;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  bottom: 0;
  width: 100%;
}
