html {
  color: black;
}
body {
  background: linear-gradient(darkslategray, cadetblue);
  padding-bottom: 200px;
}
header {
  text-align: center;
  border-radius: 30px;
  margin-bottom: 30px;
  margin-top: 20px;
}
h1 {
  color: rgb(29, 207, 198);
  font-size: 32px;
  font-family: "Geist Pixel", Arial, Helvetica, sans-serif;
}
h2 {
  color: lightcoral;
  font-family: "Montenegrin Gothic One", "Black Ops One";
  font-size: 26px;
}
.image1 {
  height: 100px;
}
.navbar {
  background-color: darkslategrey;
  padding: 8px 10px 8px 10px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.navy-lmao {
  text-align: center;
  display: inline-block;
  column-gap: 30px;
}
.navbar-a {
  font-size: 16px;
  color: #c12a99;
  background-color: rgba(94, 29, 207, 0.598);
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  font-family: "Black Ops One", Arial, Helvetica, sans-serif;
}
.inline-image {
  height: 20px;
  width: 20px;
}
.text {
  margin-top: 20px;
  margin-left: 190px;
  margin-right: 190px;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 10px 10px 10px 10px;
  transition: box-shadow 0.25s, ;
}
.text:hover {
  box-shadow: 0 0 10px rgb(29, 207, 198);
}
p {
  color: rgb(38, 212, 203);
  font-size: 20px;
}
a {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  color: rgb(161, 89, 161);
}
.wait {
  font-size: 16px;
  display: inline;
}
.button {
    background: linear-gradient(#c12a99e4,rgba(94, 29, 207, 0.404));
    font-size: 20px;
    font-family:'Black Ops One', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 10px 12px 10px 12px;
    border: 0px;
    border-radius: 18px;
    transition: background-color 0.12s;
}
.button:hover {
  background-color: rgb(179, 91, 50);
}
.button:active {
  background-color: aquamarine;
}