@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

body {
  align-content: center;
  background: #333;
  border: 40px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(
    to bottom,
    rgba(255, 106, 230, 1) 0%,
    rgba(255, 253, 98, 1) 33%,
    rgba(167, 255, 123, 1) 66%,
    rgba(0, 212, 255, 1) 100%
  );
  border-width: 40px;
  display: grid;
  justify-content: center;
  height: 100vh;
}

.message-wrapper {
  align-content: center;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  margin: auto 10px;
  max-width: 1336px;
}

.message-wrapper > div {
  display: grid;
  text-align: center;
  font-size: 32px;
  justify-content: center;
  align-content: center;
}

.time-frame {
  font-weight: 700;
}

.telly {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
}

@media only screen and (max-width: 760px) {
  .message-wrapper {
    flex-direction: column;
  }
}
