#content {
  background-color: #1f2636;  
}

#box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px;
}

#box {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 30px;
}

#image-container {
  flex: 1;
  max-width: 40%;
}

#image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#text-container {
  flex: 2;
  color: white;
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
  text-align: justify;
}

.splash {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #FF5733;
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 20px;
  height: 20px;
}

.splash-container {
  position: absolute;
  opacity: 0;
  transition: transform 0.5s linear, opacity 0.5s linear;
}

.splash-main {
  border-radius: 50%;
  background: #FF5733;
  width: 20px;
  height: 20px;
}

.splash-small {
  position: absolute;
  border-radius: 50%;
  background: #FF5733;
  width: 5px;
  height: 5px;
}
