body {
  font-family: Arial;
  text-align: center;
  background-color: black;
  color: white;
}
img {
  max-width: 100%;
  border-radius: 10px;
}

.layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.speakers {
  width: 150px;
}

.content {
  text-align: center;
  max-width: 600px;
}
@media (max-width: 700px) {
  .layout {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .side-gif {
    width: 120px;
  }

  .content {
    max-width: 90%;
    text-align: center;
  }
}