/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #eaeaea;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

/* Container */
.infographic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Image desktop */
.img-desktop {
  width: 100%;
  max-width: 1920px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Image mobile:  */
.img-mobile {
  width: 390px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}

/* Title */
h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}
