@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");
@keyframes animleft {}
@media (max-width: 900px) {
  header {
    height: 70px;
    width: 100dvw;
    padding: 0px 35px;
    background-color: rgba(8, 7, 11, 0.8705882353);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1;
    /* Estilos ativos */
  }
  header .header-container {
    height: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header-container .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .header-container .logo a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
  }
  header .header-container .logo a span {
    color: #3793FF;
    font-family: arial;
    font-size: 1rem;
    font-weight: bold;
  }
  header .header-container menu {
    height: 100%;
    cursor: pointer;
    z-index: 1;
  }
  header .header-container menu .hamburger {
    height: 100%;
    width: 100%;
    padding: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  header .header-container menu .hamburger span {
    height: 2px;
    width: 25px;
    background-color: white;
    z-index: 1;
    transition: all 0.3s;
  }
  header .header-container menu .hamburger-active span:nth-child(1) {
    opacity: 0;
  }
  header .header-container menu .hamburger-active span:nth-child(2) {
    transform: rotate(135deg);
    padding: 0px;
    position: fixed;
    bottom: 50%;
  }
  header .header-container menu .hamburger-active span:nth-child(3) {
    transform: rotate(-135deg);
    padding: 0px;
    position: fixed;
    bottom: 50%;
  }
  header .nav-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #08070B;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 130px 0;
    clip-path: circle(100px at 90% -15%);
    pointer-events: none;
    transition: all 0.5s;
    opacity: 0.5;
  }
  header .nav-list a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1em;
    opacity: 0;
    transition: all 0.5s;
  }
  header nav.active .nav-list {
    clip-path: circle(1500px at 90% -15%);
    pointer-events: all;
    opacity: 1;
  }
  header nav.active .nav-list a {
    opacity: 1;
  }
}
@media (min-width: 901px) {
  header {
    height: 70px;
    width: 100dvw;
    padding: 0px 110px;
    background-color: rgba(8, 7, 11, 0.8705882353);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1;
  }
  header .header-container {
    height: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header-container menu {
    display: none;
  }
  header .header-container .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .header-container .logo a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
  }
  header .header-container .logo a span {
    color: #3793FF;
    font-family: arial;
    font-size: 1rem;
    font-weight: bold;
  }
  header nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav .nav-list {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 70px;
  }
  header nav .nav-list a {
    color: white;
    text-decoration: none;
    position: relative;
  }
  header nav .nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #3793FF;
    border-radius: 100px;
    transition: all 0.3s;
  }
  header nav .nav-list a:hover::after {
    width: 100%;
  }
}
@keyframes todown {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media (min-width: 901px) {
  section.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../assets/images/text.svg) no-repeat center;
    background-size: contain;
    position: relative;
    z-index: 0;
  }
  section.home div.introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  section.home div.introduction h1 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3.5rem;
  }
  section.home div.introduction h1 span {
    font-size: 2.4rem;
  }
  section.home div.introduction p {
    max-width: 360px;
    font-weight: 300;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links {
    width: 180px;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links a {
    height: 100%;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212024;
    cursor: pointer;
    border-radius: 10px;
  }
  section.home div.introduction button {
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
  }
  section.home div.introduction button:hover {
    transform: scale(1.1);
  }
  section.home .arrow {
    position: absolute;
    bottom: 5%;
    width: 100%;
    height: 80px;
    display: flex;
  }
  section.home .arrow span.one {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
  }
  section.home .arrow span.two {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.2s;
  }
  section.home .arrow span.three {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.4s;
  }
}
@media (max-width: 900px) {
  section.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../assets/images/text.svg) no-repeat center;
    background-size: contain;
    position: relative;
    z-index: 0;
  }
  section.home div.introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  section.home div.introduction h1 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3.5rem;
  }
  section.home div.introduction h1 span {
    font-size: 2.4rem;
  }
  section.home div.introduction p {
    max-width: 360px;
    font-weight: 300;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links {
    width: 180px;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links a {
    height: 100%;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212024;
    cursor: pointer;
    border-radius: 10px;
  }
  section.home div.introduction button {
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
  }
  section.home div.introduction button:hover {
    transform: scale(1.1);
  }
  section.home .arrow {
    position: absolute;
    bottom: 5%;
    width: 100%;
    height: 80px;
    display: flex;
  }
  section.home .arrow span.one {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
  }
  section.home .arrow span.two {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.2s;
  }
  section.home .arrow span.three {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.4s;
  }
}
@media (max-width: 700px) {
  section.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../assets/images/text.svg) no-repeat center;
    background-size: contain;
    position: relative;
    z-index: 0;
  }
  section.home div.introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
  section.home div.introduction h1 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2.5rem;
  }
  section.home div.introduction h1 span {
    font-size: 1.8rem;
  }
  section.home div.introduction p {
    max-width: 360px;
    font-weight: 300;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links {
    width: 180px;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  section.home div.introduction .social-links a {
    height: 100%;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #212024;
    cursor: pointer;
    border-radius: 10px;
  }
  section.home div.introduction button {
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
  }
  section.home div.introduction button:hover {
    transform: scale(1.1);
  }
  section.home .arrow {
    position: absolute;
    bottom: 5%;
    width: 100%;
    height: 80px;
    display: flex;
  }
  section.home .arrow span.one {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
  }
  section.home .arrow span.two {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.2s;
  }
  section.home .arrow span.three {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 30%;
    top: 20%;
    animation: todown 2s infinite ease-out;
    animation-delay: -0.4s;
  }
}
@keyframes animleft {}
@media (min-width: 901px) {
  section.about {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../assets/images/about.svg) no-repeat left;
    background-size: 800px;
    background-position: top left;
    margin: 150px 0px;
  }
  section.about .background-svg {
    display: none;
  }
  section.about h1 {
    font-size: 3em;
    position: relative;
    margin-bottom: 20px;
  }
  section.about h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  section.about .profile-picture {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
  }
  section.about .profile-picture img {
    height: 100%;
    border-radius: 100px;
  }
  section.about .text p {
    max-width: 900px;
    font-weight: 500;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  section.about {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  section.about .background-svg {
    height: 100px;
    overflow-x: hidden;
    width: 113%;
    background: url(../assets/images/about.svg) no-repeat left;
    background-size: contain;
  }
  section.about h1 {
    font-size: 3em;
    position: relative;
    margin-bottom: 20px;
  }
  section.about h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  section.about .profile-picture {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
  }
  section.about .profile-picture img {
    height: 100%;
    border-radius: 100px;
  }
  section.about .text p {
    max-width: 700px;
    font-weight: 500;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  section.about {
    height: 145vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  section.about .background-svg {
    height: 100px;
    overflow-x: hidden;
    width: 113%;
    background: url(../assets/images/about.svg) no-repeat left;
    background-size: 300px;
  }
  section.about h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  section.about h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  section.about .profile-picture {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  section.about .profile-picture img {
    height: 100%;
    border-radius: 100px;
  }
  section.about .text p {
    max-width: 360px;
    font-weight: 500;
    line-height: 2rem;
    text-align: justify;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  section.about {
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  section.about .background-svg {
    overflow-x: hidden;
    height: 100px;
    width: 113%;
    background: url(../assets/images/about.svg) no-repeat left;
    background-size: 300px;
  }
  section.about h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  section.about h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  section.about .profile-picture {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  section.about .profile-picture img {
    height: 100%;
    border-radius: 100px;
  }
  section.about .text p {
    max-width: 360px;
    font-weight: 500;
    line-height: 2rem;
    text-align: justify;
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  section.about {
    height: 155vh;
  }
}
@keyframes animleft {}
@media (min-width: 901px) {
  .projects {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    scroll-margin-top: 100px;
    background: url(../assets/images/projects.svg) no-repeat left;
    background-size: 800px;
    background-position: top left;
  }
  .projects .background-svg {
    display: none;
  }
  .projects h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .projects h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  .projects .container-project {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .projects .container-project .project:nth-child(1) {
    align-self: flex-start;
  }
  .projects .container-project .project:nth-child(2) {
    align-self: flex-end;
  }
  .projects .container-project .project:nth-child(3) {
    align-self: flex-start;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    width: 75%;
    border-radius: 20px;
    margin-top: 120px;
    padding: 100px 0px;
  }
  .projects .project p {
    width: 450px;
    text-align: center;
    font-weight: 400;
    padding: 0px 30px;
    font-size: 0.9rem;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
  .projects .project a:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 900px) {
  .projects {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    scroll-margin-top: 100px;
  }
  .projects .background-svg {
    height: 100px;
    width: 100vw;
    overflow-x: hidden;
    background: url(../assets/images/projects.svg) no-repeat left;
    background-size: contain;
  }
  .projects h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .projects h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  .projects .container-project {
    width: 100%;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px 0px;
  }
  .projects .project p {
    width: 450px;
    text-align: center;
    font-weight: 400;
    padding: 0px 30px;
    font-size: 0.9rem;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
  .projects .project a:hover {
    transform: scale(1.1);
  }
  .projects .project .languages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media (max-width: 600px) {
  .projects {
    height: 160vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    scroll-margin-top: 100px;
  }
  .projects .background-svg {
    height: 100px;
    width: 100vw;
    overflow-x: hidden;
    background: url(../assets/images/projects.svg) no-repeat left;
    background-size: 300px;
  }
  .projects h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .projects h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px 20px;
  }
  .projects .project p {
    max-width: 350px;
    text-align: center;
    font-weight: 400;
    padding: 10px 30px;
    font-size: 0.9rem;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
  .projects .project a:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 480px) {
  .projects {
    height: 130vh;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .projects .background-svg {
    overflow-x: hidden;
    height: 100px;
    width: 100vw;
    background: url(../assets/images/projects.svg) no-repeat left;
    background-size: 300px;
  }
  .projects h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .projects h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: 250px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px 0px;
  }
  .projects .project p {
    text-align: center;
    font-weight: 400;
    padding: 0px 30px;
    font-size: 0.9rem;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
  .projects .project a:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 390px) {
  .projects {
    height: 140vh;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .projects .background-svg {
    overflow-x: hidden;
    height: 100px;
    width: 100vw;
    background: url(../assets/images/projects.svg) no-repeat left;
    background-size: 300px;
  }
  .projects h1 {
    font-size: 2em;
    position: relative;
    margin-bottom: 20px;
  }
  .projects h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 10px;
    left: 0;
    bottom: 15%;
    z-index: -1;
    background-color: #3793FF;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    min-height: 260px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px 20px;
  }
  .projects .project p {
    text-align: center;
    font-weight: 400;
    padding: 0px 40px;
    font-size: 0.9rem;
  }
  .projects .project .languages {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
}
@media (max-width: 360px) {
  .projects {
    height: 150vh;
  }
  .projects .project {
    background-color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    min-height: 260px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 20px 20px;
  }
  .projects .project p {
    text-align: center;
    font-weight: 400;
    padding: 0px 40px;
    font-size: 0.9rem;
  }
  .projects .project .languages {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
  }
  .projects .project a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    width: 195px;
    height: 48px;
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
  }
}
@keyframes animleft {}
@media (min-width: 901px) {
  .contact {
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0px 30px;
  }
  .contact h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .contact h2 {
    font-size: 1.5rem;
    color: #212024;
    margin-bottom: 30px;
  }
  .contact a {
    text-decoration: none;
    color: #3793FF;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .contact p {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .contact .links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .contact .links .social {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #919489;
    transition: all 0.3s;
  }
  .contact .links .social:hover {
    color: #3793FF;
  }
}
@media (max-width: 900px) {
  .contact {
    height: 65vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 30px;
  }
  .contact h1 {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
  .contact h2 {
    font-size: 1.5rem;
    color: #212024;
    margin-bottom: 30px;
  }
  .contact a {
    text-decoration: none;
    color: #3793FF;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .contact p {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .contact .links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .contact .links .social {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #919489;
    transition: all 0.3s;
  }
  .contact .links .social:hover {
    color: #3793FF;
  }
}
@media (max-width: 480px) {
  .contact {
    height: 45vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 30px;
  }
  .contact h1 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .contact h2 {
    font-size: 1rem;
    color: #212024;
    margin-bottom: 30px;
  }
  .contact a {
    text-decoration: none;
    color: #3793FF;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .contact p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .contact .links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .contact .links .social {
    font-size: 1rem;
    text-transform: uppercase;
    color: #919489;
    transition: all 0.3s;
  }
  .contact .links .social:hover {
    color: #3793FF;
  }
}
@media (max-width: 412px) {
  .contact {
    height: 50vh;
  }
}
@media (max-width: 380px) {
  .contact {
    height: 40vh;
  }
}
@media (max-width: 360px) {
  .contact {
    height: 50vh;
  }
}
@keyframes animleft {}
footer {
  height: 40px;
  width: 100%;
  padding: 40px 0px;
  display: flex;
  justify-content: center;
}
footer p {
  font-size: 10px;
  color: #919489;
  font-weight: 600;
}
footer p a {
  color: white;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0.8rem;
}

::-webkit-scrollbar-thumb {
  background: rgb(60, 60, 60);
  border-radius: 1rem;
}

::-webkit-scrollbar-track {
  background: rgb(8, 7, 11);
}

body {
  background-color: #08070B;
  color: white;
  height: 480dvh;
  width: 100%;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

main {
  width: 100%;
  height: 100%;
  padding: 0px 30px;
}

section {
  width: 100%;
  height: 100vh;
}

@media (min-width: 901px) {
  body {
    height: 500dvh;
  }
  body.active {
    overflow: auto;
  }
  main {
    width: 100%;
    height: 100%;
    padding: 0px 110px;
  }
}
@media (max-width: 480px) {
  body {
    height: 395dvh;
  }
}
@media (max-width: 412px) {
  body {
    height: 400dvh;
  }
}
@media (max-width: 412px) and (min-height: 900px) {
  body {
    height: 375dvh;
  }
}
@media (max-width: 380px) {
  body {
    height: 430dvh;
  }
}
@media (width: 360px) and (height: 780px) {
  body {
    height: 500dvh;
  }
  section.about {
    height: 160vh;
  }
}

/*# sourceMappingURL=style.css.map */
