:root {
    --cyan: rgb(239,245,254);
    --white: rgb(255,255,255);
    --black: rgb(75, 75, 75);
    --purple-200: rgba(25, 0, 255, 0.466);
    --purple-100: rgb(255, 0, 106);
}

::-webkit-scrollbar {
    width: 5px;
    filter: drop-shadow(0px 1.5em 0.2em rgb(221, 0, 250));
    box-shadow: inset 0 0 5px rgb(0, 0, 0);
    border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--purple-200);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--purple-100);
}

body {
    background-color: var(--cyan);
    color: var(--black);
    cursor: default;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    text-align: center;
}

h3 {
    font-family: 'Roboto', sans-serif;
}

header {
    height: 15vh;
    width: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    box-shadow: 0 5px 10px rgba(184, 206, 239, 0.6);
}

.social {
    margin-left: 2em;
    display: flex;
    transition: 1s;
}

.social:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.social p{
    line-height: 0;
    font-size: 0.7rem;
}

.social-logo {
    width: 2em;
    border-radius: 50%;
}

.container {
    display: flex;
}

.profile {
    /* position: fixed; */
    background-color: var(--white);
    width: 30%;
    height: 85vh;
    box-shadow: 0 5px 10px rgba(184, 206, 239, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 0; */
    overflow-y: scroll;
}

.pic {
    position: absolute;
    width: 100px;
    border-radius: 50%;
    align-self: center;

    margin-top: -3em;
    /* left: 6.5em; */
    box-shadow: 0 5px 10px rgba(184, 206, 239, 0.6);
}

.about-me {
    width: 80%;
    padding-top: 1.3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.first-content {
    margin-top: 2em;
}

.about-me p {
    font-size: 0.75em;
    font-family: 'Roboto', sans-serif;
    margin-top: 0.3rem;
}

.skills p:hover {
    font-weight: 600;
    cursor: default;
}

.childrens {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
}

.childrens img {
    width: 5em;
    height: 5em;
    margin-top: 1em;
    border-radius: 50%;
    object-fit: cover;
    /* 0 5px 10px rgba(184, 206, 239, 0.6); */
    filter: drop-shadow(0 5px 10px rgba(184, 206, 239, 0.6));
}

.cat {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.portfolio {
    margin-top: 3%;
    width: 80%;
    height: 75vh;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow-y: scroll;
}

.project {
    width: 44%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 2em;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(184, 206, 239, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.project img {
    width: 90%;
    height: 200px;
    object-fit:fill;
    margin-top: 2em;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(184, 206, 239, 0.6);
}

.project h5 {
    margin: 1em 0 0 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

.project p {
    margin: 1em 0;
    font-size: 0.6rem;
    font-family: monospace;
    font-weight: 100;
}

.project :hover {
    box-shadow: 0 5px 30px rgba(184, 206, 239, 0.6);
    transition: 0.5s;
}