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

body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
 
}

/* SECTION */
#section {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ROW */
.elem {
  position: relative;
  border-top: 1px solid #555;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
}

/* TEXT */
.elem h1 {
  font-size: 3vw;
  text-transform: uppercase;
}

.elem h5 {
  font-size: 1vw;
}

/* IMAGE */
.elem img {
  position: absolute;
  width: 250px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}