@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');
html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  text-align: center;
  font-family: 'Lato', sans-serif;
  padding: 0;
  background: #2f2c3d;
  color: #fff;
}

h1 {
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  margin: 10px;
}

body {
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

article {
  display: block;
  width: 700px;
  padding: 50px;
  margin: 0 auto;
}

a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

span {
  font-size: 15px;
}

.a {
  animation: pulse 3s linear infinite;
}

@-webkit-keyframes "pulse" {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #2f2c3d;
}

.spinner {
  position: absolute;
  top: 50%; /* centers the loading animation vertically one the screen */
  left: 50%; /* centers the loading animation horizontally one the screen */
  width: 3.75rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */
  text-align: center;
}

.spinner > div {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: #fff;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/* FOOTER */

.footer {
    margin-top: 150px;
    background-color: var(--secondBackgroundColor);
    padding: 3% 7% 2% 7%;
    position: absolute;
    width: 100%;
}

.footer__spaceis {
    float: right;
    font-size: 15px;
    opacity: 0.8;
}

.footer__spaceis__img {
    width: 100px;
    margin-left: 30px;
    opacity: 0.8;
    transition: 0.4s;
    content: var(--spaceisLogo);
}

.footer__info {
    opacity: 0.5;
}

.footer__spaceis__img:hover {
    opacity: 1;
    transition: 0.4s;
}

.footer__h3 {
    font-size: 16px;
    color: var(--textHeaderColor);
}

.footer__a {
    color: var(--textHeaderColor);
    text-decoration: none;
}

.footer__a:hover {
    color: var(--titleColor);
}

@media only screen and (max-width: 1400px) {
    .footer__spaceis {
        float: left;
        margin-top: 20px;
    }
    .footer {
        margin-top: 150px;
        background-color: var(--secondBackgroundColor);
        padding: 30px 3% 30px 3%;
        position: absolute;
        width: 100%;
    }
}

@media only screen and (max-width: 422px) {
    .footer__spaceis__img {
        margin-top: 20px;
        margin-left: 0px;
        display: block;
    }
}
