.construction {
  width: 100%;
  height: 100vh;
  background: url(https://www.mhwilliams.com/wp-content/uploads/2020/01/11.jpeg)
    no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow-x: hidden;
}

.construction .box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.9);
}

.construction .box h1,
.construction .box span {
  color: #fff;
}

.construction .box h1 {
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: -140px;
}

.construction .box span {
  font-size: 20px;
}

.construction .box li {
  list-style: none;
  margin-top: -80px;
}

.construction .box li span {
  padding: 40px;
  border: 5px solid #ffa800;
  color: #ffa800;
  margin: 30px;
  border-radius: 50%;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
}

@media only screen and (max-width: 908px) {
  .construction .box h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .construction .box span {
    font-size: 18px;
    text-align: center;
  }

  .construction .box li span {
    padding: 20px;
    margin: 10px;
    font-size: 18px;
  }
}

.construction .box a {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.construction .box a:hover {
  border: 1px solid #ffa800;
  color: #ffa800;
}