body {
  font-family: "Montserrat", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.content-area {
  height: 95vh;
  width: 100%;
  text-align: center;
}
.d-flex {
  display: flex;
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
.fade-in.one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.fade-in.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.fade-in.three {
  -webkit-animation-delay: 1.7s;
  -moz-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.logo {
  max-width: 480px;
  width: 80%;
  display: block;
  margin: 50px auto;
}

h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
}

p.soon-msg {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  width: 50%;
  margin: auto;
}

.social ul {
  list-style-type: none;
  padding: 0;
}
.contactos ul {
  list-style-type: none;
  padding: 15px;
}
.contactos ul li {
  margin-bottom: 15px;
}
.contactos ul li a {
  margin-bottom: 15px;
  color: #000;
}
.social ul li {
  display: inline-block;
  margin: 5px;
}
.social ul li a img {
  width: 28px;
}
.social ul li a img:hover {
  opacity: 0.7;
}
.copy-right {
  /*position: absolute;
  bottom: 0;
  right: 0;
  left: 0;*/
  text-align: center;
  padding-bottom: 15px;
  /*font-size: 12px;
  color: rgba(0, 0, 0, 0.5);*/
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  color: #7a7a7a;
}

.copy-right a {
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  color: #7a7a7a;
}

@media (max-width: 600px) {
  .logo {
    max-width: 240px;
  }
  
  p.soon-msg {
    width: 80%;
  }
