/* Google Fonts
--------------------------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Manrope);

/* Global
--------------------------------------------------------------------------------*/

body {
    background-color: #F5F5F5;
    margin: 0;
    padding: 0;
    font-family: 'Manrope';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

p {
    margin: 0;
}

/* Icon Colors
--------------------------------------------------------------------------------*/
[class^='icon'] {
    width: 25px;
    height: 25px;
}

.icon-github {
    filter: invert(3%) sepia(20%) saturate(140%) hue-rotate(314deg) brightness(94%) contrast(87%);
}

.icon-medium {
    filter: invert(0%) sepia(100%) saturate(7447%) hue-rotate(246deg) brightness(108%) contrast(112%);
}

.icon-linkedin {
    filter: invert(25%) sepia(99%) saturate(1557%) hue-rotate(195deg) brightness(95%) contrast(93%);
}

/* Sticky Footer
--------------------------------------------------------------------------------*/

.Site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.Site-content {
    flex: 1;
}

/* Containers
--------------------------------------------------------------------------------*/
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Header
--------------------------------------------------------------------------------*/

header {
    background-color: #555555;
    border-top: 3px solid #bd2c0f;
    display: flex;
    flex-direction: row;
    padding: 0 15px;
}

.logo {
    font-size: 28px;
    color: #ffffff;
    padding: 12px 0;
    font-weight: 500;
    line-height: 1.2;
    margin-top: auto;
    margin-bottom: 0;
}

.logo-secondary {
    color: #e3a857;
}

.logo-description {
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-top: auto;
    padding: 0px 0px 12px 16px;
    font-size: 18px;
    line-height: 1.5;
}

/* Section
--------------------------------------------------------------------------------*/

.section-title {
    border-left: 3px solid rgb(138, 51, 36);
    padding-left: 15px;
    margin: 18px 0px 0px;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
}

.section-description {
    font-size: 22px;
    font-style: italic;
    padding: 0px;
    font-weight: 400;
    line-height: 1.5;
}

.section-content {
    margin: 18px 0px;
}

.section-content p {
    margin: 16px 0;
}

/* Intro
--------------------------------------------------------------------------------*/
.intro-section {
    display: flex;
    justify-content: space-between;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.hobbies {
    width: 50%;
}

.hobbies p {
    margin: 0px;
}

.hobbies-title {
    margin-bottom: 0;
}

.hobbies-list {
    margin: 0;
    padding-left: 15px;
}

/* Footer
--------------------------------------------------------------------------------*/
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.social-media-list {
    padding: 0;
    list-style-type: none;
}

.social-media-list li {
    display: inline-block;
    margin: 0px 5px;
}

/* Media Queries
--------------------------------------------------------------------------------*/

@media (max-width: 576px) {
    p {
        font-size: 18px;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    .container {
        width: auto;
        margin: 0;
    }
    .logo-description {
        padding-left: 0;
    }
    .intro-section {
        flex-direction: column;
        align-items: center;
    }
    .hobbies {
        width: 100%;
    }
    .hobbies p {
        margin-top: 18px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
