* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  width: 100%;
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  background-image: url(../img/deep-blue-texture-background.jpg);
  background-size: contain;
  background-position: center;
}

header {
  background-image: url(../img/deep-blue-texture-background.jpg);
  background-size: cover;
  background-position: top;
  width: 100%;
  padding: 20px 60px;
  transition: 1s;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
header .logo {
  width: 300px;
  height: 100px;
  padding-top: 20px;
  background-image: url(../img/ac-logotp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
header nav {
  width: 100%;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  list-style-type: none;
}
header nav ul li {
  margin: 0 auto;
  text-align: center;
}
header nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.35s ease;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
}
header nav ul li a:hover {
  filter: drop-shadow(0px 0px 8px orange);
}
header nav ul li a img {
  width: 40px;
  height: 40px;
}

.fixedHeader {
  background-image: url(../img/deep-blue-texture-background.jpg);
  background-size: cover;
  background-position: top;
  position: fixed;
  width: 100%;
  padding: 10px 60px;
  box-shadow: 0 5px 20px black;
  z-index: 99;
  top: -100%;
  transition: all 800ms ease-in-out;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.fixedHeader .logo {
  width: 300px;
  height: 100px;
  padding-top: 20px;
  background-image: url(../img/ac-logotp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.fixedHeader nav {
  width: 100%;
}
.fixedHeader nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  list-style-type: none;
}
.fixedHeader nav ul li {
  margin: 0 auto;
  text-align: center;
}
.fixedHeader nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.35s ease;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.fixedHeader nav ul li a:hover {
  filter: drop-shadow(0px 0px 8px orange);
}
.fixedHeader nav ul li a img {
  width: 40px;
  height: 40px;
}

.fixedActive {
  top: -10px;
}

.main {
  width: 100%;
  height: 100vh;
  background-image: url(../img/galaxy-night-view.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0px 0px 8px;
  text-align: center;
  flex-wrap: wrap;
}
.main .main-wrapper {
  width: 100%;
  margin: 0 auto;
}
.main .main-wrapper h1 {
  color: #ffffff;
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 40px;
  margin-top: 80px;
  -webkit-animation: fade 2s 0.5s ease-in-out both;
          animation: fade 2s 0.5s ease-in-out both;
}
.main .main-wrapper h2 {
  font-weight: 300;
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 30px;
  -webkit-animation: fade-2 2s 2.8s ease-in-out both;
          animation: fade-2 2s 2.8s ease-in-out both;
}
.main .main-wrapper h2 span {
  font-weight: 400;
  color: orange;
}
.main .main-wrapper h3 {
  color: #ffffff;
  font-weight: 300;
  font-size: 6vh;
  margin-bottom: 100px;
  position: relative;
  -webkit-animation: fade-3 2s 4.5s ease-in-out both;
          animation: fade-3 2s 4.5s ease-in-out both;
}
@-webkit-keyframes fade {
  from {
    transform: translateX(-300px);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade {
  from {
    transform: translateX(-300px);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fade-2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fade-3 {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-3 {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main .main-wrapper img {
  width: 80px;
  -webkit-animation: moving 1s infinite;
          animation: moving 1s infinite;
  filter: drop-shadow(0 15px 3px black);
}
@-webkit-keyframes moving {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moving {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.about {
  width: 100%;
  padding: 50px 60px;
  scroll-padding-top: 50px;
}
.about .about-wrapper {
  width: 100%;
  padding: 50px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.about .about-wrapper img {
  width: 20rem;
  border-radius: 50%;
}
.about .about-wrapper .about-text {
  width: 50%;
  text-align: justify;
  line-height: 1.5rem;
  font-weight: 300;
  font-size: 1.2rem;
}
.about .about-wrapper .about-text h4 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.skills {
  width: 100%;
  padding: 50px 60px;
  background-color: #440277;
  margin-bottom: 40px;
}
.skills h2 {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 4px;
  text-shadow: 0px 0px 8px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.skills .skills-wrapper {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.skills .skills-wrapper img {
  width: 150px;
  filter: drop-shadow(0 70px 5px black);
  -webkit-animation: float 4s ease-in-out infinite;
          animation: float 4s ease-in-out infinite;
}
@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.projects {
  width: 100%;
}
.projects h2 {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 4px;
  text-shadow: 0px 0px 8px;
  padding: 40px 0 40px 0;
  text-transform: uppercase;
}
.projects .projects-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.projects .projects-wrapper .project {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
  filter: drop-shadow(0 20px 10px black);
}
.projects .projects-wrapper .project img {
  width: 70%;
  margin: 40px;
  border-radius: 10px;
  border: 2px solid #ffffff;
}
.projects .projects-wrapper .project a {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  transition: all 1s;
  letter-spacing: 5px;
}
.projects .projects-wrapper .project a:hover {
  transform: scale(1.1);
  color: orange;
  text-shadow: 0 0 5px orange;
}

.contact {
  width: 100%;
  padding: 40px 0;
}
.contact h2 {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 4px;
  text-shadow: 0px 0px 8px;
  padding: 50px 60px;
  text-transform: uppercase;
}
.contact .form-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contact .form-wrapper form {
  width: 50%;
  margin: 0 auto;
}
.contact .form-wrapper form div {
  margin-bottom: 30px;
}
.contact .form-wrapper form div label {
  font-weight: 300;
  font-size: 20px;
}
.contact .form-wrapper form div label input {
  width: 100%;
  height: 3rem;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0px 10px 30px black;
  border-style: none;
  padding: 30px 20px;
}
.contact .form-wrapper form div label input:focus {
  font-size: 16px;
  outline: 0;
}
.contact .form-wrapper form div label input::-moz-placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form div label input:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form div label input::placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form div label .message {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0px 10px 30px black;
  border-style: none;
  padding: 15px 16px;
  resize: none;
}
.contact .form-wrapper form div label .message:focus {
  font-size: 16px;
  outline: 0;
}
.contact .form-wrapper form div label .message::-moz-placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form div label .message:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form div label .message::placeholder {
  font-size: 18px;
  font-weight: 300;
}
.contact .form-wrapper form .submit {
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border-style: none;
  box-shadow: 0px 10px 30px black;
  background-color: orange;
  font-size: 30px;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 5px;
  border-style: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.contact .form-wrapper form .submit:hover {
  border: 2px solid #ffffff;
}

.footer {
  background-color: #1c2229;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}
.footer .social-networks {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  margin-top: 40px;
}
.footer .social-networks .icon-wrapper {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.footer .social-networks .icon-wrapper img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.footer .social-networks .icon-wrapper a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 4px;
}

.about-wrapper, .skills-wrapper, .projects-wrapper, .form-wrapper {
  visibility: hidden;
}

@media (max-width: 912px) {
  * {
    scroll-padding-top: 100px;
  }
  header, .fixedHeader {
    margin: 0px 0;
    padding: 10px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  header .logo, .fixedHeader .logo {
    width: 300px;
    height: 100px;
    margin: 10px;
    background-size: contain;
  }
  header nav, .fixedHeader nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header nav ul, .fixedHeader nav ul {
    width: 80%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  header nav ul li, .fixedHeader nav ul li {
    padding: 10px;
    width: 120px;
    height: 40px;
  }
  .main {
    padding: 20px 30px;
  }
  .about .about-wrapper img {
    width: 25rem;
    border-radius: 50%;
    margin-bottom: 60px;
  }
  .about .about-wrapper .about-text {
    width: 100%;
    line-height: 2rem;
    font-size: 1.7rem;
  }
  .about .about-wrapper .about-text h4 {
    text-align: center;
  }
  .skills h2 {
    font-size: 28px;
  }
  .skills .skills-wrapper img {
    width: 180px;
  }
  .projects {
    padding: 20px 20px 250px 20px;
  }
  .projects h2 {
    font-size: 28px;
  }
  .projects .projects-wrapper .project {
    flex-direction: column;
  }
  .projects .projects-wrapper .project img {
    width: 35rem;
    margin: 40px;
    border-radius: 10px;
  }
  .projects .projects-wrapper .project a {
    font-size: 22px;
  }
  .contact {
    scroll-padding-top: 0;
    padding: 20px;
  }
  .contact h2 {
    font-size: 28px;
  }
  .contact .form-wrapper form {
    width: 100%;
  }
  .contact .form-wrapper form div {
    margin-bottom: 40px;
  }
  .contact .form-wrapper form div label input::-moz-placeholder {
    font-size: 20px;
  }
  .contact .form-wrapper form div label input:-ms-input-placeholder {
    font-size: 20px;
  }
  .contact .form-wrapper form div label input::placeholder {
    font-size: 20px;
  }
  .footer {
    background-color: #1c2229;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .footer .icon-wrapper {
    justify-content: center;
    margin-top: 40px;
    font-size: 12px;
  }
  .footer .icon-wrapper img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 540px) {
  header, .fixedHeader {
    margin: 10px 0;
    flex-wrap: wrap;
  }
  header .logo, .fixedHeader .logo {
    width: 200px;
    margin-bottom: 0;
    background-size: contain;
  }
  header nav, .fixedHeader nav {
    width: 100%;
  }
  header nav ul, .fixedHeader nav ul {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  header nav ul li, .fixedHeader nav ul li {
    width: 110px;
    margin: 10px;
  }
  header nav ul li a, .fixedHeader nav ul li a {
    font-size: 12px;
  }
  .main {
    height: 110vh;
  }
  .main .main-wrapper {
    flex-wrap: wrap;
  }
  .main .main-wrapper h1 {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .main .main-wrapper h2 {
    font-size: 30px;
    text-align: center;
  }
  .main .main-wrapper h3 {
    font-size: 30px;
  }
  .about {
    padding: 80px 20px 20px 20px;
  }
  .about .about-wrapper {
    padding: 20px 20px 200px 20px;
  }
  .about .about-wrapper img {
    width: 20rem;
    margin-bottom: 60px;
  }
  .about .about-wrapper .about-text {
    width: 100%;
    line-height: 2rem;
    font-size: 16px;
  }
  .about .about-wrapper .about-text h4 {
    text-align: center;
  }
  .skills {
    padding: 100px 20px 20px 20px;
  }
  .skills h2 {
    margin-bottom: 40px;
  }
  .skills .skills-wrapper {
    padding: 0;
    height: 100vh;
    justify-content: space-around;
  }
  .skills .skills-wrapper img {
    width: 40%;
    padding: 10px;
  }
  .projects .projects-wrapper {
    padding: 20px;
  }
  .projects .projects-wrapper .project {
    flex-direction: column;
  }
  .projects .projects-wrapper .project img {
    width: 100%;
    margin: 40px;
    border-radius: 10px;
  }
  .projects .projects-wrapper .project a {
    font-size: 18px;
  }
  .contact .form-wrapper form {
    width: 100%;
  }
  .contact .form-wrapper form div {
    margin-bottom: 40px;
  }
  .contact .form-wrapper form div label input::-moz-placeholder {
    font-size: 20px;
  }
  .contact .form-wrapper form div label input:-ms-input-placeholder {
    font-size: 20px;
  }
  .contact .form-wrapper form div label input::placeholder {
    font-size: 20px;
  }
  .footer {
    background-color: #1c2229;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .footer .icon-wrapper {
    justify-content: center;
    margin-top: 40px;
  }
  .footer .icon-wrapper img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 412px) {
  header {
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0px;
  }
  header .logo {
    width: 200px;
  }
  .main {
    padding-top: 120px;
  }
  .main h3 {
    margin-bottom: 20px;
  }
  .about {
    scroll-margin-top: 100px;
  }
  .about .about-wrapper {
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .about .about-wrapper img {
    width: 15rem;
  }
  .skills {
    scroll-margin-top: 90px;
  }
  .projects {
    scroll-margin-top: 120px;
    width: 100%;
    padding: 20px;
  }
  .projects .projects-wrapper {
    width: 100%;
    padding: 20px;
  }
  .projects .projects-wrapper .project {
    width: 100%;
  }
  .projects .projects-wrapper .project img {
    width: 90%;
  }
  .contact {
    padding: 0;
    scroll-margin-top: 120px;
  }
  .contact .form-wrapper form {
    width: 90%;
  }
  .footer {
    justify-content: center;
    width: 100%;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */