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

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(233, 47%, 7%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  display: flex;
  max-width: 1100px;
  background-color: hsl(244, 38%, 16%);
  border-radius: 10px;
  overflow: hidden;
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 60px;
}

.item-1 h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 25px;
}

.item-1 .span {
  color: hsl(277, 64%, 61%);
}

.item-2 p {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.stats {
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.item-3, .item-4, .item-5 {
  color: white;
}

.item-3 h4, .item-4 h4, .item-5 h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.item-3 p, .item-4 p, .item-5 p {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image {
  width: 50%;
  position: relative;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-content {
    width: 100%;
    padding: 30px;
  }

  .item-1 h1 {
    font-size: 28px;
  }

  .item-2 p {
    font-size: 14px;
  }

  .stats {
    flex-direction: column;
    width: 100%;
  }

  .item-3, .item-4, .item-5 {
    margin: 20px 0;
  }

  .image {
    width: 100%;
    height: 240px;
  }
}