/* Media Query for when screen is too small for homescreen cards */
@media only screen and (max-width:1100px)
{
    .projectCard
    {
        margin: 10%;
        width: 80%
    }
}

@font-face {
    font-family: "MyHandwriting";
    src: url("../Assets/My Handwriting.ttf");
}

body
{
    font-family: "Inconsolata", serif;
    background-color: #FFFAEC;
}

#banner
{
    color: black;
    text-align: center;
    font-family: "MyHandwriting";
    padding-top: 1%;
}

#footer
{
    color: black;
    text-align: center;
}

#navigationBar
{
    font-weight: bold;
    padding-left: 1%;
    z-index: 1;
    text-align: center;
    background-color: #FFFAECF1;
}

#content
{
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 0px;
    padding-right: 0px;
    z-index: 0;
}

.pageTitle
{
    text-align: center;
}

#homeAboutDiv
{
    background-color: #9ccd9c;
    text-align: center;
}

#homeAboutTextHeading
{
    font-weight: bold;
    font-size: xx-large;
}

#homeAboutText
{
    margin: 10px;
}

#homeAboutTextColumn
{
    margin: auto;
    padding: 0px;
}

#mePicture
{
    rotate: -15deg;
}

.noPaddingOrMargin
{
    padding: 0px;
    margin: 0px;
}

#homeProjectsDiv
{
    background-color: #99d5db;
    text-align: center;
    position: relative;
}

#codeProjectsDiv
{
    background-color: #99d5db;
}

svg
{
    margin-bottom: -1px;
}

.flipX
{
    transform: scaleX(-1);
}

.flipY
{
    transform: scaleY(-1);
}

.button
{
    border: none;
    border-radius: 25px;
    padding: 15px;
    background-color: white;
    color: black;
}

.projectCard
{
    margin-bottom: 1%;
}

.codeProjectsImages
{
    height: 250px;
    object-fit: cover;
}

.pythonText
{
    color: #4646d4;
}

code
{
    white-space: pre-wrap;
    color: black;
}

.codeBox
{
    background-color: rgb(255, 255, 255);
    border-radius: 1%;
    display: none;
    margin-top: 10px;
}

.pythonComment
{
    color: rgb(216, 37, 37);
}

.pythonCodeText
{
    color: rgb(85, 175, 85);
}

.pythonPurple
{
    color: rgb(147, 82, 167);
}

.pythonOrange
{
    color: rgb(231, 161, 32);
}

.socialIcon
{
    color: white;
}

.downloadLink
{
    color: black;
    text-decoration: none;
}

#codeFilters
{
    z-index: 10;
}

.cSharpText
{
    color: purple;
}

.unityText
{
    color: rgb(84, 84, 84);
}

.htmlText
{
    color: orange;
}

.cssText
{
    color: blue;
}

.phpText
{
    color: blueviolet;
}

.jsText
{
    color: rgb(157, 157, 37);
}

.sqlText
{
    color: rgb(0, 204, 255);
}

#aboutMeSection, #skillsTechnologiesSection, #contactMeSection
{
    display: none;
    margin: 20px;
}

.aboutButton
{
    justify-self: center;
    background-color: #9ccd9c;
}

.aboutButtonColumn
{
    display: flex;
    align-content: center;
    justify-content: center;
}

.aboutIcon
{
    height: 75px;
    display: block;
    aspect-ratio: initial;
    margin: auto;
}

#aboutTextSection
{
    display: none;
}

.skillsAndTechnologiesItem
{
    position: relative;
    width: max-content;
    height: 19px;
    font-weight: bold;
}

.skillsAndTechnologiesItem:hover
{
    font-size: 18px;
}

.skillsAndTechnologiesTitle
{
    text-align: center;
}

.skillsAndTechnologiesDiv
{
    margin: auto;
    width: 10%;
    height: 100%;
}

#technologiesCSharp
{
    top: 20px;
    left: -150px;
}

#technologiesCSS
{
    top: 30px;
    left: -80px;
}

#technologiesGit
{
    top: -50px;
    left: 65px;
}

#technologiesHTML
{
    top: -35px;
    left: 145px;
}

#technologiesJS
{
    top: 10px;
    left: 180px;
}

#technologiesPHP
{
    top: -5px;
    left: 0px;
}

#technologiesPython
{
    top: -15px;
    left: -200px;
}

#technologiesSQL
{
    top: 20px;
    left: 155px;
}

#technologiesUnity
{
    top: 0px;
    left: -75px;
}

#skillsOrganised
{
    top: 20px;
    left: 150px;
}

#skillsTeamwork
{
    top: 20px;
    left: -85px;
}

#skillsTroubleshoot
{
    top: 65px;
    left: 0px;
}

#skillsLearning
{
    top: 100px;
    left: -180px;
}

#skillsDetails
{
    top: 120px;
    left: 175px;
}

.skillsAndTechnologiesHover
{
    display: none;
    background-color: #99d5db;
    z-index: 20;
    position: absolute;
    border-radius: 3px;
    padding: 3px;
    text-align: center;
    width: 300px;
    position: fixed;
}

.skillsAndTechnologiesHover h5
{
    font-weight: bold;
}