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

body{
  background:#050505;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
}

.construction{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  text-align:center;
}

.content{
  max-width:520px;
}

h1{
  font-size:64px;
  color:#ff1b1b;
  font-style:italic;
}

h2{
  margin-top:10px;
  font-size:34px;
  text-transform:uppercase;
}

.gif{
  width:220px;
  margin:35px 0;
}

p{
  color:#ccc;
  font-size:18px;
  line-height:1.6;
}

a{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  border:1px solid #ff1b1b;
  border-radius:12px;
  color:#ff1b1b;
  text-decoration:none;
  font-weight:bold;
}

a:hover{
  background:#ff1b1b;
  color:white;
}