* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 10px;
}
.wrapper {
  max-width: 600px;
  height: 400px;
  margin: 2.5rem auto;
  background-color: rgb(234, 232, 231);
  border-radius: 1rem;
}
.tabs {
  overflow: hidden;
}
.tab-head {
  display: flex;
  justify-content: space-around;
  font-size: 1.6rem;
  background-color: rgb(212, 209, 209);
  border-radius: 1rem;
}
.tab-head__item {
  padding: 1.5rem;
  cursor: pointer;
}
.tab-head__item:hover,
.tab-head__item.active {
  background-color: rgb(164, 192, 248);
  border-radius: 1rem;
}
.tab-content {
  position: relative;
}
.tab-content__item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(100px);

  padding: 2rem;
  font-size: 1.4rem;
}
.tab-content__item.active {
  opacity: 1;
  transition: all 250ms;
  transform: translateX(0);
  position: static;

  background-color: rgb(164, 192, 248);
  border-radius: 1rem;
  height: 320px;
}
