img {
  border-radius: 8%;
  width: 400px;
  height: 300px;
  object-fit: fill;
}
html, body {
  height: 100%;
  margin: 0;
}
body {
  text-align: center;
  display: flex;
  margin: 0;
}

#left-panel {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#right-panel {
  /* background-color: whitesmoke; */
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url("https://pop-verse.com/wp-content/uploads/2017/08/the-it-crowd-binge-watch.jpg");
  background-size: cover;
}
p {
  font-family: "Anonymous Pro", serif;
  font-weight: 700;
  font-style: italic;
}

h1, button {
  font-family: 'Cursed Timer ULiL', sans-serif;
}


h1 {
  color: #F28120;
  font-size: 53px;
  font-weight: normal;
}

#generateQuote-btn {
  width: 200px;
  height: 44px;
  font-style: normal;
  font-size: 30px;
  border: none;
  background-color: #D9D9D9;
  padding-top: 5px;
  border-radius: 8px;
}

#generateQuote-btn:hover {
  border: none;
  background-color: #000000;
  color: #F28120;
  transition: .5s;
}


.quote {
  /* quote box */
  background-color: rgba(255, 252, 252, 0.911);
  width: 70%;
  height: 55%;
  border-radius: 12px;
  position: absolute;
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.close-btn {
  top: 0;
  right: 0;
  position: absolute;
  padding: 10px;
  margin: 0;
  color: rgba(128, 128, 128, 0.342);
  cursor: pointer;
  font-weight: 800;
  font-size: 2rem;
}

.close-btn:focus,.close-btn:hover{
  color: #F28120;
  font-weight: 800;
  
}

#logo {
  position: absolute;
  top: 0;
  /* right: 0; */
  z-index: 1;
  /* align-items: center; */
}

#quote-by {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  margin: 0;
  font-weight: 900;
  font-size: 1.25rem;
}

#quotetext {
  padding: 30px 30px;
  margin-top: 20px;
  position: relative;
  font-size: 1.5rem;
}



.characters ul {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 10px; /* Optional spacing between items */
  padding: 0;
}

ul {
  list-style: none;
}

.fa-square-x-twitter,
.fa-copy{
  color: black;
}

.fa-square-x-twitter:hover,
.fa-copy:hover {
  color: #F28120;
}

a,
a:link,
a:visited,
a:active {
  color: black;
  text-decoration: none;

}


