<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "LG";
  src: url("../../assets/LG_Smart_UI-Regular.ttf") format("truetype");
}

body {
  background-color: white;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

main img {
  width: 100%;
  max-width: 1600px;
  min-width: 360px;
}

.video {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  flex-flow: column nowrap;
  width: 100%;
  max-width: 900px;
  height: 554px;
  background: rgb(86, 58, 180);
  background: linear-gradient(
    90deg,
    rgba(86, 58, 180, 1) 0%,
    rgba(200, 29, 253, 1) 64%,
    rgba(126, 69, 252, 1) 100%
  );
}

.video h1 {
  color: white;
  font-family: "LG";
  font-size: 2rem;
}

.video iframe {
  width: 80%;
  min-width: 360px;
  max-width: 700px;
  height: 70%;
  min-height: 180px;
}
</pre></body></html>