@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css");
body, main {
    font-family: 'Playfair Display', serif;
    background-color: black;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

#circle{
    margin: 0 auto;
    position: fixed;
    width: 100%;
    height: 100vh;

    overflow: hidden;
  }
  
  .stars{
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: #ffcc00;
    animation: show 4s linear;
    opacity: 0;
  }
  
  .noordstar{
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0;
    
    animation: show 3s linear;
  }
  
  @keyframes show{
    0%{
        opacity: 0;
    }50%{
      opacity: 1;
    }100%{
      opacity: 0;
    }  
  }
  

  .nav {
   
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 200px;
    background: #ffcc00;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav,
  .nav .nav-links {
    display: flex;
    align-items: center;
  }
  .nav {
    justify-content: space-between;
  }
  a {
    color: #353842;
    text-decoration: none;
  }
  .nav .logo {
    font-size: 22px;
    font-weight: 500;
  }
  .nav .nav-links {
    column-gap: 20px;
    list-style: none;
  }
  .nav .nav-links a {
    transition: all 0.2s linear;
  }
  .nav.openSearch .nav-links a {
    opacity: 0;
    pointer-events: none;
  }
  .nav .search-icon {
    color: #353842;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    position: absolute;
    right: 250px;
    height: 45px;
    max-width: 555px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;
  }
  .nav.openSearch .search-box {
    opacity: 1;
    pointer-events: auto;
  }
  .search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    left: 15px;
    color: #ffcc00;
    transform: translateY(-50%);
  }
  .search-box input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    color: white;
    border-radius: 6px;
    background-color: #353842;
    padding: 0 15px 0 45px;
  }
  
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: none;
  }
  
  /* responsive */
  @media screen and (max-width: 1160px) {
    .nav {
      padding: 15px 100px;
    }
    .nav .search-box {
      right: 150px;
    }
  }
  @media screen and (max-width: 950px) {
    .nav {
      padding: 15px 50px;
    }
    .nav .search-box {
      right: 100px;
      max-width: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .nav .navOpenBtn,
    .nav .navCloseBtn {
      display: block;
    }
    .nav {
      padding: 15px 20px;
    }
    .nav .nav-links {
      
      top: 0;
      left: -100%;
      height: 100%;
      max-width: 280px;
      width: 100%;
      padding-top: 100px;
      row-gap: 30px;
      flex-direction: column;
      background-color: #ffcc00;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      z-index: 10000;
    }
    .nav.openNav .nav-links {
      left: 0;
    }
    .nav .navOpenBtn {
      color: #353842;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .navCloseBtn {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #353842;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .search-box {
      top: calc(100% + 10px);
      max-width: calc(100% - 20px);
      right: 50%;
      transform: translateX(50%);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
  }








  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.7rem;
    color: white;
  }



  h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffcc00;
  }

.all_main {
    display: flex;
}

  .main_section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10vh;
  }



  .btn {
    margin-top: 5%;
  
    outline: 0;
    cursor: pointer;
    text-align: center;
    
    padding: 1.4vh 4vh;

    color: black;
    background: #ffcc00;
    border-radius: 1px;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
  }

.btn_2 {
    
    
    outline: 0;
    cursor: pointer;
    text-align: center;
    padding: 1.4vh 4vh;
    min-height: 44px;
    min-width: 44px;
    color: black;
    background: #ffcc00;
    border-radius: 1px;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}

.imgbg {
    width: 100%;
    height: 100%;
    padding-right: 50vh;
}


.about_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10vh;
}

.final_section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bgfinal {
    width: 35%;
    height: 10%;
}

.finalh1 {
    font-size: 3rem;
    font-weight: 800;
}

.finalh2 {
    font-size: 1rem;
}


.quadrado {

    animation: up-down 4s infinite alternate;
  }
  
  @keyframes up-down {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(50px);
    }
  }








  @media screen and (max-width: 768px) {
    .nav .navOpenBtn,
    .nav .navCloseBtn {
      display: block;
    }
    .nav {
      padding: 15px 20px;
    }
    .nav .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      max-width: 280px;
      width: 100%;
      padding-top: 100px;
      row-gap: 30px;
      flex-direction: column;
      background-color: #ffcc00;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      z-index: 100;
    }
    .nav.openNav .nav-links {
      left: 0;
    }
    .nav .navOpenBtn {
      color: #353842;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .navCloseBtn {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #353842;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .search-box {
      top: calc(100% + 10px);
      max-width: calc(100% - 20px);
      right: 50%;
      transform: translateX(50%);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .responsivebg {
        padding-top: 15%;
        width: 100%;
        height: 100%;
    }

    .main_section {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1rem;
    }

    .main_section {
        justify-content: center;
        align-items: center;
        padding: 25vh 7vh;
      }

    .left_main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .about_section {
        flex-direction: column;
        padding: 15vh 7vh;
        align-items: center;
        justify-content: center;
    }

    .finalh1 {
        font-size: 2rem;
    }
    
    .final_section {
        justify-content: center;
        align-items: center;
        padding: 15vh 7vh;
    }
  }



  *:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

footer {
  margin-top: 4vh;
  font-family: "Poppins", sans-serif;
  position: relative;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0px;
  background: transparent;
  border-top: aliceblue 5px solid;
}

p {
  color: aliceblue;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.wrapper .icon {
  position: relative;
  background: aliceblue;
  color: rgb(0, 0, 15);
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: aliceblue;
  color: aliceblue;
  font-family: "Poppins", sans-serif;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: aliceblue;
  top: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: 60px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
  background: #0077b5;
  color: aliceblue;
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #4267b2;
  color: aliceblue;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: aliceblue;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: aliceblue;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #333;
  color: aliceblue;
}
