html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  /* Demo: use a perfect circle SVG to show distortion */
  background: url('img/beautifux.svg') no-repeat center center;
  background-size: 100vw 100vh;
  background-color: #FFF;
}

.draggable-window {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 604px;
  height: 358px;
  background: #FFF;
  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.25);
  cursor: move;
  user-select: none;
  z-index: 1000;
}

.window-content {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 226px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.text-content {
  width: 60%;
  color: #000;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.marquee-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 604px;
  height: 74px;
  background: #F2FF00;
  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 24px 0px;
  box-sizing: border-box;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  font-family: Arial;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.14990234375em;
  color: #000000;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ufo {
  position: absolute;
  width: 30px;
  height: 15px;
  background: url('img/UFO.svg') no-repeat center center;
  background-size: 100% 100%;
  z-index: 500;
}

#ufo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
} 