@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&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* details section */

.details{
    padding: 10px;
    position: relative;
    font-weight: 500;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scrollbar-base-color: black;
}

.details::-webkit-scrollbar{
    display:none;
}

.portfolio .details{
    height: 700px;
    width: 800px;
    background-color: gray;
    border-radius: 30px;
    box-shadow: 0px 0px 2px 2px white;
}

/* navbar section */

.details .navbar{
    padding: 10px;
    margin: 10px;
    border-bottom: 3px solid white;
    transition:all;
}


.navbar ul{
    list-style-type:none;
    display: flex;
    gap: 20px;
    padding: 10px;
    justify-content: end;
}

.navbar ul li a{
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all;
    transition-duration: 1s;
    transition-timing-function: linear;
}

.navbar ul li a:hover{
    text-decoration: none;
    color: black;
    font-weight: 600;
}

/* About section */

#about{
    margin-top: 40px;
}

#about .title{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 1px solid white;
    margin-left: 5px; 
}

#about .about-details{
    padding: 10px;
    text-align: justify;
}

/* skills section */

#skills .title{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 1px solid white;
    margin-left: 5px;
}

#skills .skills-content{
    display: flex;
    margin: 20px;
    gap: 20px;
}

.skills-content .skills-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.skills-content .skills-card{
    height: 100px;
    width: 100px;
    background-color: gainsboro;
    border-radius: 20px;
    padding: 5px;
}

.skills-card .skills-image{
    height: 100%;
    width: 100%;
    border-radius: 20px;
}


/* Education section */

#education{
    margin-top: 50px;
}

#education .title{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 1px solid white;
}

.education-content .education-details{
    text-align: justify;
    padding: 10px;
}


/* profile card section */

.portfolio .profile-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 700px;
    width: 350px;
    background-color: gray;
    padding: 10px;
    border-radius: 30px;
    gap: 20px;
    box-shadow: 0px 0px 2px 2px white;
}

.profile-card .image{
    height: 150px;
    width: 150px;
    background-color: black;
    border-radius: 50%;
    padding: 5px;
}

.text-data .name{
    font-size: 40px;
}

.text-data .proffession{
    padding: 10px;
    font-size: 15px;
    border: 3px solid black;
    border-radius: 15px;
    background-color: black;
    color: white;
    font-weight: 600;
}

.text-data .section{
    width:250px;
}

.profile-card .text-data{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* contact section */
.contact-details{
    width: 300px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 20px;  
}

.email-details,.phone-details,.location-details{
    display: flex;
    flex-direction: column;
}

.email-details .email-title{
    font-size: 20px;
    font-weight: 600;
}

.phone-details .phone-title{
    font-size: 20px;
    font-weight: 600;
}

.location-details .location-title{
    font-size: 20px;
    font-weight: 600;
}

.image .profile-img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.media-buttons .link{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    height: 34px;
    width: 34px;
    margin: 0 8px;
    border-radius: 50%;
    background-color:black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-card .media-buttons{
    display: flex;
    align-items: center;
    margin-top: 20px;
}


