@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    background-color: #fff;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0 5rem; 

    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    z-index: 200;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.logo {
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 200;
    color: rgb(15, 16, 24);
    font-style: normal;
    letter-spacing: 0.5rem;
    transition: all 0.2s ease-out;
}
.logo:hover {
    color: rgb(1, 103, 255);
}

.navlinks {
    display: flex;
    justify-content: space-around;
    width: 30%;
}
.navlinks a {
    text-decoration: none;
    color: rgb(15, 16, 24);
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.2s ease-out;
    letter-spacing: 0.1rem;
}
.navlinks a:hover {
    color: rgb(1, 103, 255);
}

#home {
    height: 100vh;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-info {
    display: flex;
    align-items: center;
    gap: 5rem;
    height: 40rem;
    width: fit-content;
}
.main-info-text h1 {
    font-size: 5rem;
    font-weight: 700;
    color: rgb(15, 16, 24);
}
.main-info-text p {
    font-size: 3rem;
    color: rgb(15, 16, 24);
}

.skills {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
}
.skills i {
    font-size: 5rem;
    transition: all 0.2s ease-out;
}
.skills i:hover {
    transform: translateY(1rem);
}

.socials {
    margin-top: 8rem;
    display: flex;
    gap: 2rem;
}
.socials a, .socials i {
    text-decoration: none;
    font-size: 4rem;
    transition: all 0.2s ease-out;
}
.socials a:hover, .socials i:hover {
    transform: translateY(-0.5rem);
    color: rgb(1, 103, 255);
}
.devicon-linkedin-plain, .devicon-github-original {
    color: rgb(15, 16, 24);
}

.main-info-picture img{
    width: 40rem;
    border-radius: 50%;
    display: flex;
    border: 0.4rem solid rgb(15, 16, 24);
}

#about {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 0;
}
.about-container {
    width: 50%;
}
.about-container h1{
    font-size: 4rem;
    font-weight: 700;
    color: rgb(15, 16, 24);
    margin-bottom: 3rem;
}
.about-container p{
    font-size: 2.4rem;
    color: rgb(15, 16, 24);
}

#projects {
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15rem 0;
}
#projects h1 {
    font-size: 3.6rem;
    font-weight: 700;
    color: rgb(15, 16, 24);
    margin-bottom: 3rem;
}

#contact {
    background-color: #fff;
    padding: 10rem 0;
    display: flex;
    flex-direction: column;
    align-items: center ;
}
#contact h1 {
    font-size: 3.6rem;
    font-weight: 700;
    color: rgb(15, 16, 24);
    margin-bottom: 1rem;
}
#contact p {
    font-size: 2.4rem;
    font-weight: 400;
    color: rgb(15, 16, 24);
    margin-bottom: 3rem;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.contact-methods a, .contact-methods i {
    text-decoration: none;
    font-size: 5rem;
    transition: all 0.2s ease-out;
    color: rgb(15, 16, 24);
    fill: rgb(15, 16, 24);
}
.contact-methods a:hover, .contact-methods i:hover {
    transform: translateY(-0.25rem);
    color: rgb(1, 103, 255);
    fill: rgb(1, 103, 255);
}