@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin:0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

p {
    color: rgb(85,85,85);

}

a, .btn {
    transitiono: all 300ms ease;
}

/* Nav */

nav, nav-links {
    display: flex;
}

nav {
    position: fixed;
    right: 3.5rem; /* Adjust to ensure it's within the viewport */
    width: 200px; /* Adjust based on your design */
    height: 10vh; /* Full height of the viewport */
    z-index: 1000; /* Ensure it stays on top of other elements */
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center;
}

.nav-links {
    list-style: none;
    gap: 1rem;
    display: flex;
    font-size: 1.5rem;
}

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

}

a:hover{
    color:grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(180,180,180)
}

/* Sections */

section {
    padding-bottom: 15vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content;
  }
/* 
section:not(#Home){
    margin-top: 10rem;
} */
  
  .section-container {
    display: flex;
  }

  section__pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
  }
  
  .section__text {
    align-self: center;
    text-align: center;
  }
  
  .section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;

  }
  
  .section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .title {
    font-size: 3rem;
    text-align: center;
  }
  
  #socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
  }

  #Home{
    padding-top: 15rem;
  }
  
  /* ICONS */
  
  .icon {
    cursor: pointer;
    height: 2rem;
  }
  
  /* BUTTONS */
  
  .btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 10rem;
    border-radius: 2rem;
  }
  
  .btn-color-2 {
    border: rgb(53, 53, 53) 0.1rem solid;
    background: none;
  }
  

.btn-color-2:hover {
    cursor: pointer;
    background: rgb(53, 53, 53);
    color: white;
    border: rgb(255, 255, 255) 0.1rem solid;
  }
  


  
/* PROJECTS SECTION */

#projects {
    position: relative;
  }
  
  .project-container {
    border-color: rgb(163, 163, 163);
    background: rgb(250, 250, 250);
    border-radius: 2rem;
    margin: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .project-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    width: 90%;
    height: 90%;
  }
  
  .project-title {
    margin: 1rem;
    color: black;
  }
  
  .project-btn {
    color: black;
    border-color: rgb(163, 163, 163);
  }
