body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding-bottom: 80px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 1024px;
}

.posters {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 1024px;
}

.poster {
  width: 320px;
  height: 420px;
}

.left_btn {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid gray;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.right_btn {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid gray;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.keywords {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 800px;
}

.keyword {
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.faqs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.faq_title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}

.faq {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #666;
  width: 100%;
  padding: 14px 12px;
  font-size: 18px;
}

.faq:last-of-type {
  border-bottom: 1px solid #666;
}
