html {
    height: 100%;
}

body {
    min-height: 100%;
    background-color: hsl(219, 81%, 87%);
    color: hsl(219, 17%, 8%);
}

h3 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    margin-top: 0px;
}

button {
    font-size: 16px;
    background-color: hsl(219, 55%, 99%);
    color: hsl(207, 95%, 1.5%);
    font-family: 'Roboto', sans-serif !important;
    box-shadow: -3px -1px 6px 0 rgba(0,0,0,0.15);
    border: 1px solid hsl(200, 74%, 97%);
}

button:hover {
    box-shadow: -3px -3px 14px rgba(0,0,0,0.15), 4px 4px 6px rgba(0,0,0,0.2);
    transition: 0.25s ease-in-out;
    border: 2px solid hsl(200, 74%, 15%);
    background-color: hsl(200, 74%, 97%);
}

button:focus {
    outline: none;
    box-shadow: inset -3px -3px 14px 0 rgba(0,0,0,0.1), inset 4px 6px 8px 0 rgba(0,0,0,0.1);
}

img {
    max-width: 150px;
}

.link {
    display: inline;
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name {
    font-family: 'IBM Plex Sans', sans-serif;
}

h1.name {
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 40px;
    text-align: center;
}

h4.name {
    margin-top: 0px; 
    margin-bottom: 10px;
    font-size: 18px;
}

.bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    text-align: center;
    margin-top: 0px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.2), 4px 5px 4px 0 rgba(0,0,0,0.1);
    background-color: hsl(240, 10%, 100%);
    border-radius: 25px;
    padding: 10px;
}

.bio-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
    padding: 3px;
    max-width: 75%;
}

.p-header-align {
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-family: 'IBM Plex Sans', sans-serif;
}

h2.project-header {
    margin-top: 10px;
    margin-bottom: 8px;
}

.project-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-right: .25em;
    padding-left: .25em;
}

.project-card {
    display: flex;
    align-items: center;
    padding: 1em;
    margin-top: .25em;
    margin-left: 1em;
    margin-bottom: .25em;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2), 0 5px 15px 0 rgba(0,0,0,0.1);
    border: 2px solid hsl(207, 15%, 85.5%);
    border-radius: 10px;
    width: 450px;
    min-height: 200px;
    background-color: #fff;
}

h3.project-title {
    margin-top: 0px;
    margin-bottom: 4px;
    text-align: center;
    border-bottom: 2px solid hsl(0,0%,90.6%);
}

.project-info {
    padding-left: 20px;
    margin-left: 6px;
    border-left: solid 2px;
    text-align: center;
}

.description {
    font-size: 18px;
    margin-bottom: 5px;
    padding: 5px;
}

.project-links {
    text-align: left;
    margin-top: 8px;
    font-size: 16px;
    display: flex;
    justify-content: center;
}

.project-link {
    text-decoration: none;
}

.project-button {
    min-height: 36px;
    border-radius: 6px;
    margin-left: 5px;
    border: 2px solid hsl(0,0%,90.6%);
    padding: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 64px;
}

.project-btn-text-con {
    width: 100%;
    display: flex;
    justify-content: center;
}

.project-btn-text {
    padding: 4px;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    color: hsl(207, 95%, 1.5%);
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'IBM Plex Sans', sans-serif;
}

.contact-header {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-align {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-button {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 6px;
    height: 50px;
    width: 150px;
    border: 2px solid #e7e7e7;
}

.border {
    border-top: 2.5px solid #e7e7e7;
    border-bottom: 2.5px solid #e7e7e7;
}

.git-icon-cart {
    padding-left: 10px;
}

@media(max-width: 500px) {
    .project-icon {
        padding-left: 5px;
        font-size: 2em !important;
    }
    h3 {
        font-size: 20px;
    }
    .project-card {
        margin-left: 0px;
        min-height: 150px;
    }
    .project-info {
        padding-left: 10px;
        text-align: center;
    }
    h4.name {
        font-size: 2.5vh;
    }
    h1.name {
        margin-bottom: 0px;
    }
    .project-links {
        text-align: center;
        font-size: 16px;
        margin-top: 5px;
        flex-direction: column;
        align-items: center;
    }
    .project-button {
        font-size: 14px;
        margin-left: 0;
        width: 145px;
    }
    .cloud-style {
        padding-left: 0px;
        margin-top: 10px;
    }
    .description {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .bio-text {
        font-size: 18px;
        margin-bottom: 5px;
        max-width: 100%;
    }
    .button-collapse {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact-button {
        margin-top: 15px;
    }
    .fa-2x {
       font-size: 1.33em !important;
    }
    .project-btn-text {
        font-size: 18px;
    }
}

@media(max-width: 320px) {
    img {
        max-width: 100px;
        max-height: 100px;
    }
    h1.name {
        margin-top: 10px;
    }
}