/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
.btn-primary a, .btn-primary a:visited {
    background-color: #333333;
    border-radius: 4px;
    color: #cccccc;
    padding: 7px 10px;
    text-decoration: none;
}

.btn-primary a:hover, .btn-primary a:visited:hover {
    background-color: black;
}

#sidebar {
    background-color: #333333;
    color: #cccccc;
    width: 280px;
    position: fixed;
    height: 100vh;
}

#sidebar div {
    text-align: center;
    width: 100%;
}

#sidebar .avatar {
    margin: 30px 0 10px 0;
}

#sidebar .avatar img {
    width: 150px;
    border-radius: 50%;
}

#sidebar .name {
    font-size: 20pt;
    margin: 7px 0 25px;
}

#sidebar .name a, #sidebar .name a:visited {
    color: #cccccc;
    text-decoration: none;
}

#sidebar .name a:hover, #sidebar .name a:active, #sidebar .name a:visited:hover, #sidebar .name a:visited:active {
    color: white;
}

#sidebar div.links {
    font-size: 12px;
}

#sidebar div.links ul {
    display: inline-block;
    list-style: none;
}

#sidebar div.links ul li {
    display: inline-block;
    float: left;
}

#sidebar div.links ul li a, #sidebar div.links ul li a:visited {
    color: #cccccc;
    font-size: 1.1rem;
    padding: 0 5px;
    text-decoration: none;
    text-transform: lowercase;
}

#sidebar div.links ul li a:hover, #sidebar div.links ul li a:visited:hover {
    color: white;
}

#sidebar .social {
    position: absolute;
    bottom: 25px;
    left: 0;
    text-align: center;
}

#sidebar .social a {
    font-size: 10px;
    margin: 0 10px;
    color: #cccccc;
}

#sidebar .social a:hover, #sidebar .social a:active {
    color: white;
}

#sidebar .social a.github {
    font-size: 12px;
}

#sidebar .social a.linkedin {
    font-size: 15px;
}

@media only screen and (max-width: 479px) {
    #sidebar {
        background-color: #333333;
        color: #cccccc;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 40px;
    }

    #sidebar .avatar {
        display: none;
    }

    #sidebar .name {
        font-size: 20pt;
        margin: 0;
        display: inline-block;
        width: 38%;
        padding: 4px 0 0 4px;
    }

    #sidebar .name a, #sidebar .name a:visited {
        color: #cccccc;
        text-decoration: none;
    }

    #sidebar .name a:hover, #sidebar .name a:active, #sidebar .name a:visited:hover, #sidebar .name a:visited:active {
        color: white;
    }

    #sidebar .quote {
        display: none;
    }

    #sidebar div.links {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 12px;
        display: inline-block;
        width: 200px;
        text-align: right;
        padding-top: 12px;
    }

    #sidebar div.links ul {
        display: inline-block;
        list-style: none;
    }

    #sidebar div.links ul li {
        display: inline-block;
        float: left;
    }

    #sidebar div.links ul li a, #sidebar div.links ul li a:visited {
        color: #cccccc;
        font-size: 1.1rem;
        padding: 0 5px;
        text-decoration: none;
        text-transform: lowercase;
    }

    #sidebar div.links ul li a:hover, #sidebar div.links ul li a:visited:hover {
        color: white;
    }

    #sidebar .social {
        display: none;
    }
}

.buttons-group {
    margin-top: 50px;
}

.title {
    font-size: 20pt;
}

.info {
    font-size: 10pt;
    margin: 5px 0 10px 0;
}

#aboutme {
    display: inline-block;
    width: 100%;
    padding: 0 0 20px 0;
}

#aboutme h2 {
    margin-bottom: 10px;
}

#aboutme .bio {
    margin: 20px auto 20px 10vw;
}

#aboutme .bio table td {
    padding: 5px 0;
}

#aboutme .bio table td.key {
    color: #800080FF;
    text-align: right;
    font-size: 1rem;
}

#aboutme .bio table td.colon {
    padding: 0 10px;
}

#aboutme .bio table td.value {
    color: #0000FFFF;
}

#aboutme .bio table td.value a {
    color: #0000FFFF;
}

#aboutme .bio table td.value a:visited {
    color: #0000FFFF;
}

#aboutme .bio .brackets {
    font-size: 25px;
    font-weight: bold;
}

@media only screen and (max-width: 479px) {
    #aboutme {
        display: inline-block;
        width: 100%;
        padding: 0 0 20px 0;
    }

    #aboutme h2 {
        margin-bottom: 10px;
        text-align: center;
    }

    #aboutme .bio {
        width: 100vw;
        margin: 0;
        padding: 0;
    }

    #aboutme .bio table {
        margin: 0;
        width: 95vw;
    }

    #aboutme .bio table td {
        padding: 5px 0;
    }

    #aboutme .bio table td:first-of-type {
        width: 20px;
    }

    #aboutme .bio table.key {
        color: purple;
        text-align: right;
    }

    #aboutme .bio table.colon {
        padding: 0 10px;
    }

    #aboutme .bio table.value {
        color: blue;
    }

    #aboutme .bio table.value a {
        color: blue;
    }

    #aboutme .bio table.value a:visited {
        color: blue;
    }

    #aboutme .bio .brackets {
        font-size: 25px;
        font-weight: bold;
    }
}

#project {
    margin: 0 auto;
    padding: 20px;
    width: 80%;
}

#project .project-image {
    margin-top: 20px;
}

#project .project-image img {
    margin: 0 auto;
    width: 80%;
}

#project .project-description {
    padding: 20px 0;
    width: 80%;
}

#project .crumb {
    margin-top: 20px;
}

#projects h1 {
    display: block !important;
}

#projects .hover-link .project-single {
    height: 150px;
    width: 130px;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin: 20px;
}

#projects .hover-link:hover .project-single {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    padding: 0;
    color: #000000;
    font-family: "Cabin", "Ubuntu Mono", sans-serif;
    font-size: 20px;
}

#main {
    margin-left: 300px;
    padding: 40px 50px 40px 25px;
}

#main h1 {
    margin-bottom: 40px;
    display: none;
}

@media only screen and (max-width: 479px) {
    body {
        overflow-x: hidden;
    }

    #main {
        margin: 40px 0 0 0;
        padding: 5px 10px;
    }
}
