* {
  font-family: 'Architects Daughter', cursive;
  list-style: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  box-sizing: border-box;
  height: 100vh;
  background-image: url('../images/pink-popcorn-background.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: black;
}

.header {
  border: black;
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px;
}

.js-text {
  height: 30px;
  width: 400px;
}
.main {
  display: flex;
}

.favoriteSection {
  width: 30vw;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: rgb(173, 17, 140);
}

.resultSection {
  width: 70vw;
  padding: 20px;
  text-align: start;
  color: rgb(173, 17, 140);
}

h3 {
  font-size: 12px;
  text-align: center;
}
.js-image {
  width: 130px;
  height: 180px;
}
.serieCard {
  border-radius: 12px;
  display: inline-block;
  padding: 10px;
  background-color: #ffdfd3;
  margin: 7px;
}
.serieFavCard {
  border-radius: 12px;
  display: inline-block;
  padding: 10px;
  background-color: #e0bbe4;
  margin: 7px;
}

.button {
  color: white;
  background-color: rgb(173, 17, 140);
  border-radius: 12px;
  font-weight: bold;
  padding: 5px;
  width: 100px;
}

.imgFav {
  height: 120px;
  border-radius: 12px;
  align-self: center;
}

.removeButton {
  padding: 5px;
  border-radius: 20px;
  border-color: white;
  background-color: white;
}

.button-reset-all {
  border-radius: 20px;
  border-color: lightgray;
  background-color: white;
  height: 40px;
  margin-left: 20px;
  padding-right: 5px;
}
