html,
body {
  height: 100%;
  margin: 0;
  background-color: #053bb7;
}
.joke-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

header {
  display: flex;
  justify-content: center;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 5%,
    rgba(13, 13, 203, 1) 93%,
    rgba(0, 212, 255, 1) 100%
  );
  margin-top: 0px;
  margin-bottom: 0px;
}
#site-footer {
  height: 13vh;
  width: 100%;
  border: 2px solid silver;
  color: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 5%,
    rgba(13, 13, 203, 1) 93%,
    rgba(0, 212, 255, 1) 100%
  );
}
footer > span {
  font-size: 16px;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
#footerEmail > a {
  color: #ffb272;
  font-size: 22px;
}
#subscribe > a {
  color: #ffb272;
  font-size: 18px;
  border: 5px solid #ffb272;
  border-style: groove;
  text-decoration: none;
  /* margin-right: 145px; */
  padding: 5px 5px;
  border-radius: 10%;
}
#subscribe > a:hover {
  background-color: rgba(241, 151, 15, 0.952);
  color: darkblue;
}
h1 {
  text-align: center;
  color: rgb(234, 237, 238);
}
h1:hover > span {
  display: none;
}
h1:hover:before {
  color: rgb(32, 197, 209);

  content: "Hello Chuck Norris Fans";
}
#headImg {
  height: 55px;
  width: 80px;
}

#getjoke-btn {
  background-color: rgb(153, 89, 5);
  color: whitesmoke;
  font-size: 20px;
  border-radius: 10%;
  transition-duration: 0.3s;
}
#getjoke-btn:hover {
  background: #fff;
  box-shadow: 0px 2px 3px 3px #7a878f;
  color: #000;
}
#jokes {
  background-color: #536ba2;
  font-family: "Sriracha";
  resize: none;
  font-size: 18px;
  height: 155px;
  color: rgb(255, 255, 255);
}

.slides {
  height: 500px;
  width: 400px;
  color: white;
  margin-top: 40px;
}
#p1 {
  color: white;
  font-size: 24px;
  border-bottom: 1px solid grey;
  width: 37%;
}
