


*{
  overflow-x: hidden;
}

:root {
    --main-gold: rgb(193, 157, 38);
  }

  .gold{
    color: var(--main-gold);
  }

  body{
    background-color: black;
    overflow-x: hidden;
  }

  .nav{

    background-color: black;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
    -webkit-box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
    -moz-box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
}

.nav-content{
    display: flex;
    flex-direction:row ;
    justify-content: space-between;
     gap: 2rem;
     width: 95%;
     max-width: 1150px;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-skill,.nav-upper,.home{
    font-size: 1.5rem;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
}

.nav-skill *,.nav-upper *,.home *{
    color: white;
    text-decoration: none;
}

.nav-skill a:hover span,.nav-upper a:hover span,.home a:hover span{
    color: var(--main-gold);
    text-decoration: none;
}

.nav-skill a:hover,.nav-upper a:hover,.home a:hover{
  color: var(--main-gold);
  text-decoration: none;
}

.hero{
  width: 100vw;
}


.hero-content{
  width: 95;
  max-width: 1200px;
  margin: 0 auto;
  padding:0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: center;
}

.hero-text{
  color: white;
  font-size: 2rem;
  padding-top:10rem;
  line-height: 3rem;
  font-weight: bolder;
  letter-spacing: .2rem;
  max-width: 400px;
}

.hero-image{

box-sizing: border-box;
  padding-top: calc(15rem - 10vw);
  width: 100%;


}
.hero-image img{
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  max-height: 700px;
  border-radius: 2rem;

}

.hero-nav{
  width: 100%;

}

.hero-nav-content{
  width: 100%;
  gap: 1rem;
}

.hero-nav-content{
  margin-top: 1rem;
  max-width: 300px;
  display: flex;

}

.hero-nav-content *{
  margin-top: 1rem;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  background-color: white;
  border-radius: 1rem;
  padding: .2rem 1rem;
}

.hero-nav-content *:hover{
  
  background-color: black;
  color: white;
  border: solid white .1rem;
  }


  @media (max-width:750px){
    
    .hero-content{
      grid-template-columns: 1fr;
      justify-content: center;
      padding-left: 4rem;
      margin-bottom: 5rem;
    }

    .hero-image{
      display: none;
    }

  }

  @media (max-width:560px){
    
    .hero-content{
      grid-template-columns: 1fr;
      justify-content: center;
      padding-left: 2rem;
    }

    .remove{
      display: none;
    }
    .nav-content{
      gap: .5rem;
      margin-right: .5rem;
  }
  }