* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: hsl(233, 47%, 7%);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

span {
  color: hsl(277, 64%, 61%);
}

.card {
  display: flex;
  width: 1100px;
}

.details_container {
  padding: 5rem;
  padding-bottom: 3rem;
  background-color: hsl(244, 38%, 16%);
  color: hsla(0, 0%, 100%, 0.75);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.details_container .name {
  font-size: 35px;
  color: hsl(0, 0%, 100%);
  margin-bottom: 2rem;
}

.details_container .description {
  font-size: 15px;
  line-height: 2;
  margin-right: 30px;
  margin-bottom: 3rem;
}

.summary {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  gap: 80px;
  font-family: 'Lexend Deca', sans-serif;
  color: hsl(0, 0%, 100%);
}

.p_summary {
  margin-top: 10px;
  font-size: 12px;
  color: hsla(0, 0%, 100%, 0.6);
}

.img_container {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: hsl(277, 64%, 61%);
}

.img_container img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}
