/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set body styles */
body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  overflow: hidden;
}

/* Container styling */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Heading and paragraph styles */
.container h1 {
  font-size: 4em;
  margin-bottom: 20px;
}

.container p {
  font-size: 1.5em;
}

/* Responsive typography */
@media (max-width: 768px) {
  .container h1 {
    font-size: 2.5em;
  }

  .container p {
    font-size: 1.2em;
  }
}

/* Background animation */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Work in Progress 0023.gif') center center / cover no-repeat;
  opacity: 0.5;
  z-index: 1;
}
