*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  height:100%;
}

body{
  background:#000 url('./background.jpg') center / cover no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  color:#fff;
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:1;
}

.content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;
  padding-bottom:30px;
  gap:22px;
}

.coming{
  text-align:center;
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:0.85;
}

.social{
  display:flex;
  gap:16px;
}

.social a{
  padding:14px 32px;
  border-radius:50px;
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:0.3s;
}

.social a:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

.whatsapp{
  background:#25D366;
}

.instagram{
  background:linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}

.footer{
  text-align:center;
  font-size:12px;
  opacity:0.75;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.creator{
  font-size:11px;
  opacity:0.6;
}

@media(max-width:600px){
  .coming{
    font-size:15px;
  }
  .social{
    flex-direction:column;
    width:100%;
    align-items:center;
  }
  .social a{
    width:90%;
    max-width:320px;
    text-align:center;
  }
}
