* {
    margin: 0;
    padding: 0;
  }

  html{
    scroll-behavior: smooth;
  }


  body{
    font-family: 'Open Sans', sans-serif;
    color: #000000;
  }

  .logo img {
    width: 230px;
    position: relative;
    bottom: 7px;
  }

  a{
    text-decoration: none;
    color: #ffffff;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #000000;
    height: 8vh;
    position: fixed;
    width: 100%;
    z-index: 100;
  }

  .frases-intro{
    display: inline-block;
    position: relative;
    left: 100px;
    top: 110px;
  }

  h3.intro{
    color: #e6e352;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
  }

  h1.frase-1{
    color: white;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    background:linear-gradient(to right,#bc58ff, #dd8706, #f5de5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


  }

  h1.frase-2{
    color: white;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    font-size: 45px;
    letter-spacing: 1px;
  }

  .max-width{
    max-width: 500px;
    text-align: left;
  }

  

  h2{
    color: white;
    font-size: 23px;
    
  }

  
  
  body {
    /* background: url("../images/background.jpg") no-repeat center center;
    background-size: cover;
    height: 92vh; */
    background-color: #000000;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    z-index: 100;
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
  }

  .conteudo-principal{
    top: 30px;
    position: relative;
    width: 100%;
    margin: 0px auto;
    
  }

  /*teste*/

  .conteudo-apresentacao{
    position: relative;
    width: 100%;
    margin: 0px auto;
    min-height: 100vh;
  }

  .conteudo-apresentacao .minhafoto{
    display: inline-block;
    position: absolute;
    width:300px;
    border-radius: 20%;
    top: 200px;
    right: 300px;
    filter: grayscale(0%);
    box-shadow: 0 0 30px rgb(140, 0, 255),
    0 0 25px rgb(170, 59, 197);
    text-align: left;
  }
.sobre-mim{
  position: relative;
  top: 100px;
  margin: 0 auto;
  width: 90%;
  min-height: 70vh;
}

.mim{
  color: rgb(245, 93, 93);
}

  .about-me{
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: white;
  }

  .image-man-coding{
    position: absolute;
    width: 350px;
    top: 50px;
    left:45%;
    box-shadow: 0 0 30px rgb(253, 119, 101),
    0 0 25px rgb(170, 59, 197);
  }
  .floating{
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
  }

  @keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}

  


  .meu-paragrafo{
    margin-top: 30px;
    color: #9c9c9c;
  }

  .espaco-download{
    position: absolute;
    bottom: -60px;
    left: 0px;
  }

  .downloadCV{
    background-color: transparent;
    border-style: none;
  }

  .downloadCV a{
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: rgb(245, 93, 93);
    width: 100px;
    padding: 10px;
    border-radius: 10px;
    
  }

  .redes-sociais{
    position: relative;
    width: 50%;
    border: 1px solid red;
    background-color: red;
    height: 200px;
    top: 170px;
    left: 100px;
  }

  
  .mobile-menu {
    display: none;
    cursor: pointer;
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #23232e;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }

  .icons{
    margin-top: 80px;
  }

  .icons a{
    background: #ecf0f3;
    position: relative;
    height: 60px;
    width: 60px;
    margin: 0 10px;
    display: inline-flex;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .icons a:hover:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: #ecf0f3;
    box-shadow: inset
   -3px -3px 7px #ffffff,
                inset 3px 3px 5px #ceced1;
  }
  .icons a i{
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 25px;
    line-height: 60px;
  }
  .icons a:hover i{
    transform: scale(0.9);
  }
  .icons a.fb i{
    color: #4267B2;
  }
  .icons a.twitter i{
    color: #1DA1F2;
  }
  .icons a.insta i{
    color: #E1306C;
  }
  .icons a.git i{
    color: #333;
  }
  .icons a.yt i{
    color: #ff0000;
  }

  .footerContainer{
    padding: 20px;
    position: absolute;
    bottom: -200px;
    width: 100%;
    
}
  

.footerBottom{
  background-color: #000;
  padding: 20px;
  text-align: center;
}

.footerBottom p{
  color: white;
}


 