html {
    font-family: 'Indie Flower', cursive;
}

.navBar {
    top: 0px;
    position: fixed;
    background-color: black;
    width: 100%;
}
.navBar p {
    color: white;
    font-size: 5px;
    margin-left: 30px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 100px;
}

.projectContent, .profileContent, .contactContent {
    margin-top: 70px;
}

/* #item1 {
    padding: 20px;
    background: grey;
    border-radius: 10px;
} */

.projectsRow1 {
    display: flex;
    justify-content: space-around;
}
.projectsRow2 { 
    display: flex;
    justify-content: space-around;
}

.contact, .projects {
    position: relative;
    height: 333px;
    width: 250px;
    background-color: black;
    border-radius: 10px;
}

.projectText {
    color: aliceblue;
}


.contactText, .projectText {
    margin-top: 150px;
    margin-left: 77px;
    position: absolute;
    text-align: center;
    font-size: 29px;
}

#projects {
    position: relative;

}

#gear {
    margin: 20px;
    width: 50px; 
    height: 50px;    
    -webkit-animation: spin 100s infinite linear;
}

.header {
    display: flex;
}

.header h2 {
    order: 2;
}

.header #gear {
    order: 1;
}



@-webkit-keyframes spin {
    0%  {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}   
}


.row2 {
   left: 50px;
}


.column {
    border-radius: 10px;
}

a {
    text-decoration: none;
}

h1 {
    position: absolute;
    top: -10px;
    margin: 0;
    right: 30px;
    font-size: 60px;
    cursor: pointer;
}

#stock, #addBook, #crypto {
    width: 350px;
    border-radius: 10px;
}
.repo1:hover, .repo2:hover, .repo3:hover {
    text-decoration: underline;
}


#profile p{
    color: black;
    text-align: center;
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    margin-top: 30px;
}


.homePix {
    width: 250px;
    height: 333px;
    border-radius: 10px;
}

img,h1,.projects,.contact, i{
    -webkit-transformation: 0.3s ease-in-out, -webkit-transformation 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
    transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
    cursor: pointer;
    margin: 10px;
}

img:hover, h1:hover, .projects:hover, .contact:hover, i:hover {
    transform: scale(1.05);
}

.connectTabs{
    margin-top: 200px;
    display: flex;
    justify-content: center;
}

i {
    cursor: pointer;
}

a { color: black } /* Globally */

/* Each state */

a:visited { text-decoration: none; color: black; }
a:hover { text-decoration: none; color:blue; }
a:focus { text-decoration: none; color:black; }
a:hover, a:active { text-decoration: none; color:black }

/* mobile responsive */

@media only screen and (max-width: 600px) {
    body {
    
        
    }

    .projectsRow1 {
        flex-direction: column;
        justify-content: space-around;
    }
    .projectsRow2 { 
        display: flex;
        justify-content: space-around;
    }

    .container {
        flex-direction: column;
        /* margin-left: 70px; */
        justify-content: center;
    }

    .homePix{
        width: 370px;
        height: 490px;;
        border-radius: 10px;
    }

    .projects {
        width: 370px;
        height: 70px;

    }

    .projectText {
        left: 60px;
        top: -135px;
    }

    /* #three {
        order: 2;
    }

    #one {
        order: 3;
    }
    
    #two {
        order: 1;
    } */
}