body {
  font-family: 'Monda', sans-serif;
  background-color: #5D576B;
}


h1 {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 75px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  letter-spacing: 1px;
}

.container {
  background-color: #D3D5D4;
  padding: 20px;
  border: 5px solid #A9A9A9;
  margin-bottom: 30px;
}

.showButton {
  text-transform: capitalize;
  text-align: center;
  width: 200px;
  height: 35px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: white;
  border: 1.5px solid #5D576B;
  border-radius: 10px;
  color: #665687;
}

#newTvShowToAdd {
  width: 300px;
  background-color: white;
  border: 1.5px solid #5D576B;
  height: 40px;
  margin-top: 45px;
}

#submitBtn {
  display: block;
  background-color: white;
  border: 1.5px solid #5D576B;
  font-size: 15px;
  margin-top: 15px;
}

.gifDiv {
  float: left;
  position: relative;
  margin-right: 10px;
  margin-bottom: 10px;
}

.gifImage { 
  border: 2px solid #5D576B;
}

.gifImageRating {
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  right: 10px;
  color: white;
}

.showButton:hover {
  cursor: pointer;
}

.showButton:focus {
  outline-color: #5D576B;
}

#submitBtn:hover {
  outline-color: #5D576B;
}

#submitBtn:focus {
  cursor: pointer;
}

.gifImage:hover {
  cursor: pointer;
}