*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Montserrat', sans-serif;
  color:#fff;
  text-align:center;
  overflow:hidden;
  background: url('/assets/img/bg-img.jpg') center/cover no-repeat;
  position:relative;
}

body::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5); 
  z-index:0;
}

.container{
  max-width:900px;
  padding:20px;
  animation: fadeIn 1.5s ease;
}

.logo{
  margin-bottom:30px;
  opacity:0;
  transform:translateY(-30px);
  animation: logoIn 1.2s ease forwards;
}

.logo img{
  width:170px;
  height:auto;
}

h1{
  font-size:75px;
  font-weight:600;
  text-transform: uppercase;
  margin-bottom:15px;
  opacity:0;
  transform:translateY(40px);
  animation: titleIn 1.4s ease forwards;
  animation-delay:0.3s;
}

.divider{
  width:0;
  height:3px;
  background:#2fbffd;
  margin:20px auto;
  animation: dividerGrow 1s ease forwards;
  animation-delay:0.5s;
}

p{
  font-size:18px;
  color:#fff;
  margin-bottom:30px;
  opacity:0;
  transform:translateY(40px);
  animation: textIn 1.6s ease forwards;
  animation-delay:0.6s;
}

footer{
  margin-top:40px;
  font-size:14px;
  color:#a5b0c0;
  opacity:0;
  animation: fadeIn 2s ease forwards;
  animation-delay:1s;
}

/* KEYFRAMES */
@keyframes logoIn{
  to{opacity:1; transform:translateY(0);}
}

@keyframes titleIn{
  to{opacity:1; transform:translateY(0);}
}

@keyframes textIn{
  to{opacity:1; transform:translateY(0);}
}

@keyframes dividerGrow{
  to{width:70px;}
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}