/* ===== | All | ===== */

* {
    box-sizing: border-box;
}

body {
    background-color: #5CDB95;
    color: #05386B;
}

img {
    width: 100%;
    border-radius: 5px;
    height: auto;
    max-width: 25%;
}

p {
    font-family: 'PT Sans', sans-serif;
}

h2 {
    font-size: 3em;
    font-family: 'Shadows Into Light', cursive;
}

.fa-linkedin,
.fa-github-square,
.project__link {
    color: #05386B;
}

/* ===== | Info/About | ===== */

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: baseline;
    padding: 0 50px;
}

.info__intro {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
}

.info__about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
    padding: 10%;
    max-width: 150%;
    position: relative;
}

.info__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.info__header {
    font-family: 'Shadows Into Light', cursive;
    font-size: 3em;
    text-decoration: underline;
}

.info__pic{
    max-height: 100%;
    max-width: 100%;
}

#fa-github-square__info {
    margin-left: .25em;
}

/* ===== | Skills | ===== */

.about__skills{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.about__header{
    font-family: 'Shadows Into Light', cursive;
    font-size: 3em;
    text-decoration: underline;
}

.about__icons{
    padding: 10px;
    margin: 0 2em;
    display: flex;
    align-items: centers;
}

/* ===== | Projects | ===== */

.projects {
    display: flex;
    flex-direction: row;
}

#projects__header {
    font-size: 3em;
    text-decoration: underline;
    font-family: 'Shadows Into Light', cursive;
}

.project__info {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    margin: 0 2em;
}

.project__noods {
    display: flex;
    flex-direction: row;
    background-color: #8EE4AF;
    max-width: 100%;
}

.project__pachygatchi {
    display: flex;
    flex-direction: row;
    background-color: #EDF5E1;
    max-width: 100%;
}

.project__wayfarer {
    display: flex;
    flex-direction: row;
    background-color: #8EE4AF;
    max-width: 100%;
}

.project__calc {
    display: flex;
    flex-direction: row;
    background-color: #EDF5E1;
    max-width: 100%;
}

.project__info {
    display: flex;
    flex-direction: column;
}

.project__head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    float: right;
}

#projects__header {
    display: flex;
    justify-content: center;
    text-decoration: underline;
}

#pachy__head {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    float: left;
}

#calc__head {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    float: left;
}

.project__title {
    margin: 1em;
    text-decoration: underline;
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.5em;
}

/* ===== | Contact | ===== */

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #05386B;
}

.contact__email {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 3px;
}

.contact__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 3px;
}

.contact__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40px;
    width: 60px;
    background-color: #EDF5E1;
    color: #05386B;
    border-color: #05386B;
    border-radius: 10px;
    cursor: pointer;
}

.contact__button:hover {
    background-color: #5CDB95;
    color: #05386B;
    border-color: #05386B;
}

.contact__header {
    font-size: 2em;
    font-family: 'Shadows Into Light', cursive;
    text-decoration: underline;
}

/* ===== | Media Queries  | ===== */

@media only screen and (max-width: 480px) {
    .info,
    .info__intro,
    #info__name,
    .info__about,
    .info__header,
    .project__noods,
    .project__wayfarer,
    .project__calc {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 480px) {
    .project__pachygatchi,
    .project__calc {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 480px) {
    img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .intro__header {
        text-align: center;
        font-size: x-large;
    }
}