body {
    background-color: #212c5a;
    background-image: url('./images/background.svg');
    cursor: url('./images/Pointer.png'), auto;
}

html {
    cursor: url('./images/Pointer.png'), auto;
}

blockquote {
    margin: 10px 30px;
    padding-left: 20px;
    border-left: 5px solid #1371b8;
}

.body-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 810px;
    padding: 40px;
    gap: 80px;
    align-items: center;
    background-color: #212c5a;
}

.sections {
    background-color: white;
    border-radius: 25px;
    font-family: Verdana, sans-serif;
    padding: 30px 30px;
    border: solid 2px black;
}

.sections:hover {
    box-shadow: 10px 10px 0px 5px black;
}

#section-me {
    display: flex;
    box-shadow: 10px 10px 0px 5px #1986EB;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
    transition: transform .2s;

}

#section-me:hover,
#section-skills:hover,
#section-education:hover,
#section-experience:hover {
    box-shadow: 10px 10px 0px 5px black;
    transform: scale(0.98);
    transition: transform .2s;

}



@media only screen and (max-width: 600px) {
    #section-me {
        flex-wrap: wrap;
    }

    #skills-container {
        flex-wrap: wrap;
        gap: 20px !important;
    }

}


#section-skills {
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 0px 5px #FFD300;
    justify-content: flex-start;
    max-width: 800px;
    transition: transform .2s;
}

#section-education {
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 0px 5px #FFB87D;
    justify-content: flex-start;
    transition: transform .2s;
}

#section-experience {
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 0px 5px #1986EB;
    justify-content: flex-start;
    max-width: 800px;
    transition: transform .2s;
}


/*********************Intro Section********************/
#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

#intro-header {
    margin: 0;
    font-weight: 900;
}

#intro-text {
    font-size: 18px;
}

/********************************************************/

/************************Skills Section*****************/

#skills-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 100px;
}

.languages {
    background-color: #d4d4d4;
    padding: 5px 10px;
}

.language-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-category {
    margin: 5px;
    color: grey;

}

.header-text {
    margin: 0;

}





/************Education****************************/

#education-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

#uni-logo {
    width: 116px;
    height: 41px;
}

#uni-text {
    border-left: 2px solid grey;
    padding-left: 30px;
}

#uni-text p,
h3 {
    padding: 0;
    margin: 5px;
}


/*****************Experience*********************/
.experience-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

#company-logo {
    width: 70px;
    height: 70px;
}

#experience-text {
    border-left: 2px solid grey;
    padding-left: 30px;
}

#experience-text p,
h3 {
    padding: 0;
    margin: 5px;
}

/*********************Projects portion*****************/



#section-projects:hover {
    box-shadow: none;

}

.project-image {
    box-shadow: 5px 5px 0px 5px grey;
    border-radius: 13px;
    transition: transform .2s;
}

.project-image:hover {
    box-shadow: 5px 5px 0px 5px black;
    border-radius: 13px;
    transform: scale(0.98);
    transition: transform .2s;
}

#projects-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;

}