/* RESET */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* SCENE */
.scene {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* BACKGROUND */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/bg.webp') center/cover no-repeat;
}

/* SOLEIL */
.sun {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translateX(-50%);
  background: url('../img/soleil.webp') center/contain no-repeat;
}

/* BOULES */
.boules {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 220px;
  height: 140px;
  background: url('../img/boules.webp') center/contain no-repeat;
}

/* TABLE */
.table {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 260px;
  height: 260px;
  background: url('../img/table.webp') center/contain no-repeat;
}

/* UI */
.ui {
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-align: center;
  color: white;
}

/* TITRE */
.ui h1 {
  margin: 0;
  font-size: 48px;
}

/* TEXTE */
.ui p {
  margin: 10px 0;
  font-size: 18px;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  background: #e86c3b;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}