* {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/background.jpg);
  background-position: center;
  background-size: cover;
  padding: 0 7%;
}

.nav-logo {
  width: 200px;
  padding: 30px 0;
  cursor: pointer;
}

.navbar {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  color: #1877f2;
  background-color: #fff;
  border-radius: 99px;
  outline: none;
  transition: all 0.2s ease-out;
  font-weight: bold;
}

.button:hover {
  /*background-color: #084075;*/
  box-shadow: 0 0 15px #1877f2;
  background-color: #1877f2;
  color: #fff;
}

.button-secondary {
  display: inline-block;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid white;
  background-color: transparent;
  border-radius: 99px;
  outline: none;
  transition: all 0.2s ease-out;
  font-weight: bold;
}

.button-secondary:hover {
  /*background-color: #084075;*/
  box-shadow: 0 0 15px #1877f2;
  background-color: #fff;
  color: #1877f2;
}

.content {
  color: #fff;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
}

h1 {
  font-size: 50px;
  font-family: rubik;
  font-weight: bold;
  margin: 10px 0 40px;
  line-height: 70px;
}
.content h1 span {
  color: #1877f2;
  font-family: rubik;
}

.social-links {
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-left: -50%;
  right: 0;
  text-align: center;
  display: block;
}

.social-links .fab {
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 40px;
  border: 1px solid white;
  border-radius: 99px;
  margin: 40px 5px 0;
  color: white;
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
}

.social-links .fab:hover {
  color: #fff;
  transform: translateY(-8px);
}
.fab.fa-facebook:hover {
  background: #1877f2;
}
.fab.fa-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.fab.fa-linkedin:hover {
  background: #0e76a8;
}

.fab.fa-pinterest:hover {
  background: #c8232c;
}
.fab.fa-youtube:hover {
  background: #ff0000;
}

.fab.fa-tiktok:hover {
  background: black;
}


.social-links p {
  font-size: 12px;
  margin-top: 50px;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-logo {
    width: 160px;
  }
  .content h1 {
    font-size: 28px;
    line-height: 36px;
  }
  /*.social-links {
    /*text-align: center;
    width: 100%;
    margin-left: -50%;
  }*/
  .social-links p {
    margin-top: 20px;
  }
  .rocket {
    display: none;
  }
  /*.container-404 img {
    max-width: 100%;
  }*/
  .content-404 h1 {
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 36px;
  }
}

.rocket {
  width: 300px;
  position: absolute;
  right: 15%;
  bottom: 0;
  animation: rocket 4s linear infinite;
}

@keyframes rocket {
  0% {
    bottom: 0;
    opacity: 0;
  }
  100% {
    bottom: 105%;
    opacity: 1;
  }
}

.container-404 {
  width: 100%;
  height: 100vh;
  background: #fff;
}

.wrapper-404 {
  max-width: 600px;
  height: auto;
  display: inline-block;
  position: relative;
  transform: translate(-50%);
  left: 50%;
  /*padding-bottom: 36px;*/
}

.container-404 img {
  width: 100%;
  height: auto;
}

.content-404 {
  text-align: center;
  padding-bottom: 30px;
}

.btn-inverse {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #1877f2;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease-out;
  font-weight: bold;
}

.btn-inverse:hover {
  box-shadow: 0px 0px 15px #1877f2;
}

/*.copyright {
  
}*/

.copy-wrapper {
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.copyright p {
  text-align: center;
  font-size: 12px;
}
