:root {
  --turq: #269aa7;
  --red: #e21c1b;
  --red-light: #e94847;
  --white: #fff;
  --bg-footer: #0f0e12;
  --indent: 1rem;
}

@font-face {
  font-family: Moiser;
  src: url(../fonts/moiser.woff2);
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto.ttf");
}
.hello:nth-of-type(1) {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.4666666667s;
          animation-delay: 0.4666666667s;
}

.hello:nth-of-type(2) {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.1333333333s;
          animation-delay: 0.1333333333s;
}

.hello:nth-of-type(3) {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

@-webkit-keyframes wave {
  40%, 50% {
    transform: translate(-50%, -65%) scale(1.1);
  }
  0%, 90%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes wave {
  40%, 50% {
    transform: translate(-50%, -65%) scale(1.1);
  }
  0%, 90%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.loading *,
.loading *:before,
.loading *:after {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: Roboto, sans-serif;
}

a {
  color: white;
  text-decoration: none;
}

#wrapper {
  background-image: url(../img/bg/4.jpg);
  background-position: top center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

#content {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#content h1 {
  margin: 0;
}
#content h1 .hello {
  font-size: 7vw;
  font-family: Moiser;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
  -webkit-animation-name: wave;
          animation-name: wave;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
#content div.invis {
  color: transparent;
}
#content div.social {
  color: white;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 65%;
  left: 50%;
  font-size: 3rem;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#content div.social {
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: space-between;
}
#content div.social i {
  transition: transform 0.3s ease;
}
#content div.social i:hover {
  transform: scale(1.2) rotate(8deg);
}
#content div.social i:hover::before {
  color: var(--red-light);
}
#content div.social i::before {
  transition: color 0.3s ease;
}
#content #logo {
  height: 30vw;
  width: 30vw;
  top: 45%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

#footer {
  background-color: var(--bg-footer);
  color: var(--white);
}
#footer a:hover {
  text-decoration: underline;
}
#footer h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
#footer ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style-type: none;
  line-height: 1.6em;
  font-size: 1.2rem;
}
#footer ul:last-child {
  margin-bottom: 0;
}
#footer ul a {
  color: var(--white);
}

#footer-main {
  padding: 1em var(--indent);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  padding-bottom: 3rem;
}
#footer-main .flex-el:first-of-type .fa {
  color: var(--red);
}
#footer-main .fa {
  opacity: 0.8;
  color: var(--turq);
}

#footer-detail {
  height: 1px;
  width: 100%;
  background: var(--turq);
  background: linear-gradient(90deg, var(--red) 0%, var(--bg-footer) 50%, var(--turq) 100%);
}

#footer-copyright {
  text-align: center;
}
#footer-copyright p {
  position: relative;
  margin: 0;
  padding: 2.5rem 0;
}
#footer-copyright p span {
  display: block;
}
#footer-copyright p span:first-of-type {
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem;
}
#footer-copyright p span:nth-of-type(2) {
  opacity: 0.6;
  padding-top: 0.2em;
}
#footer-copyright p span i {
  color: var(--red);
}
#footer-copyright b {
  color: var(--col-theme);
}

@media (min-width: 1000px) {
  :root {
    --indent: 18vw;
  }
  #footer ul {
    display: table;
    margin: auto;
  }
  #footer-main {
    flex-direction: row;
  }
  #footer-main .flex-el {
    flex: 1;
  }
}
@media (max-width: 1000px) {
  body #wrapper #content h1 > .hello {
    font-size: 12vw;
    top: 40%;
  }
  body #wrapper #content #logo {
    height: 80vw;
    width: 80vw;
    top: 38%;
  }
  body #wrapper #content div.social {
    max-width: calc(100% - 4rem);
  }
  body #wrapper #content div.social a {
    font-size: 3rem;
  }
  body #wrapper #content div.mail {
    font-size: 1.65rem;
  }
}/*# sourceMappingURL=main.css.map */