/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* -------------------- */
html, body {
  height: 100%;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.construction-site{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.container {
  text-align: center;
}

.construction-site h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.construction-site h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(0, 255, 255, 0.92);
}

.construction-site p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.construction-block {
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px #0000004d;
  backdrop-filter: blur(6px);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.construction-block p:nth-child(4){
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
}

.construction-block p:nth-child(5){
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
}

/* -------------------- */
/* ANIMATION */
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #ffffff4d;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* -------------------- */