body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

section {
    background-color: white;
    border: solid black 1px;
}

footer {
    height: 300px;
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
}

ol {
    font-size: 30px;
    font-weight: 300;
    text-align: start;
    list-style-position: outside;
    margin-left: 20%;
    margin-right: 20%;
}

.project_tech_used_ol {
    font-size: 10px;
    font-weight: 300;
}

ul {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    font-size: 30px;
}

ul.show {
    display: block;
    justify-content: space-around;
}

li {
    /* width: 200px; */

    text-decoration: none;
}

h1 {
    font-size: 90px;
    margin: 0px;
}

h2 {
    font-size: 50px;
}

p {
    margin: 0px;
    font-size: 30px;
    font-weight: 300;
}

.hero {
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 40px;
}

.hero-area {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    margin-left: 80px;
    margin-bottom: 200px;
}

.button {
    width: 200px;
    height: 55px;
    border-radius: 25px;
    background-color: #2596be;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
    margin-right: 50px;
}

.button:hover {
    background-color: #145369;
}

.button.button:active {
    background-color: #A9A9A9;
    color: #808080;
}

.button-ghub-link {
    width: 350px;
    height: 40px;
    border-radius: 25px;
    border-width: 2px;
    border-color: #2596be;
    border-style: solid;
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-top: 20px;
    align-items: center;
}

.socials {
    padding-bottom: 200px;
}

.social {
    margin: 20px;
}

.logo {
    height: 140px;
    margin: 20px;
}

.sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

.sub-section-projects {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;
    align-items: center;
}

.subtext {
    padding: 5px;
    font-size: 15px;
}

.headshot {
    width: 300px;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-card {
    width: 550px;
    box-shadow: 5px 5px 20px #2596be;
    background-color: #dedede;
    padding: 25px;
    margin: 15px;
    border-radius: 15px;
    transition: all .7s ease-out;
}

.project-card:hover {
    transform: scale(1.03);
    transition: all .7s ease-in-out;
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px){
    .project-container{
        display: flex;  
        flex-wrap: wrap;
    }
}

.project-image {
    margin-top: 25px;
    width: 350px;
    height: 350px;
    border-width: 10px;
    border-color: #2596be;
    border-style: inset;
    border-radius: 15px;
    /* border-radius: 152px; */
}

.project-description-subtext {
    padding: 5px;
    font-size: 15px;
    text-align: left;
}

.project-link {
    text-decoration: none;
    color: #2596be;
    display: block;
}

hr {
    margin-left: 20px;
    margin-right : 20px;
}

.fancya {
    text-decoration: none;
    color: white;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #2b2c38;
        margin: 0px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }

    .logo {
        display: none;
    }

    .my-path {
        width: 100%;
        height: 100%;
    }

}

.animationCanvas {
    position:fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
}

.animatedText-CSS {
    color: rgb(70, 156, 255);
    position: fixed;
    opacity: 20%;
}

.animatedText-HTML {
    color: rgb(224, 103, 47);
    position: fixed;
    /*position: absolute;*/
    opacity: 20%;
}

.animatedText-JS {
    color: rgb(224, 206, 47);
    position: fixed;
    opacity: 20%;
}