* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#screen {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#text {
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  z-index: 2;
  max-width: 90%;
}

#slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}