@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  padding:0;
  margin:0;
  text-decoration:none;
  box-sizing:border-box;
  font-size:18px;
  font-family: "Poppins", sans-serif;

}

.hero-maintenance{
  text-align:center;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  width: 50%;
  margin: 0 auto;
}

.content{
  border-radius: 1rem;
  border: 3px dashed green;
  padding: 20px;
}

.hero-maintenance h1{
  font-size:4rem;
  margin-bottom: 20px;
}

.hero-maintenance h4{
  font-size:2rem;
  margin-bottom: 20px;
}

.hero-maintenance .announcement{
  margin: 20px 0;
  font-size: 1.5rem;
  color: initial;
}
.hero-maintenance .announcement a{
  color: green;
  font-weight: bold;
  font-size: 1.5rem;
}
.hero-maintenance p{
  color: green;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px){
  .hero-maintenance{
    width: 95%;
    line-height: 1;
  }
  
}