@import './normalize.min.css';
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700&display=swap');

body {
    background-color: #222;
    color: #eee;
    font-family: 'Roboto Slab', 'Roboto', sans-serif;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-100 { width: 100%; }

.f-c { flex-direction: column; }

.bar {
    flex-wrap: wrap;
    max-width: 2000px;
}


/* Custom */

#title-bar {
    padding: 3rem 1rem;
    font-size: 3rem;
}

.title-text {
    margin-left: 2rem;
}


.item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: hsla(0, 0%, 9%, 1);
    border: 1px solid hsla(0, 0%, 17%, 1);
    padding: 2rem;
    color: #eee;
    text-decoration: none;
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.25) inset;;
    transition: background .15s, box-shadow .15s;
    margin: .5rem;
    width: 23rem;
    min-height: 13rem;

}

.item-title {
    font-size: 2rem;
    margin: 1rem 0.5rem;
    text-align: center;
}

.item-description {
    text-align: center;
}

.item:hover {
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5) inset;
    background: hsla(0, 0%, 11%, 1)
}

.item-image {
    max-height: 100px;
    min-height: 100px;
}

.social.item {
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    min-height: 1rem;
    padding: 0.5rem 0.4rem;
    width: 16rem;
}

.social i {
    margin: 0 .4rem;
}

#socials, #extras {
    margin: 0 2rem;
}

#extras .social.item {
    justify-content: flex-end;
    padding: 0.5rem 0.8rem;
    width: calc(16rem - 0.8rem);
}

.item.work {
    width: 5rem;
    min-height: 0;
    padding: .5rem;
}

.work .item-title {
    font-size: 1.25rem;
    margin: .5rem 0.25rem;
    font-weight: bold;
}

.item.work .item-image {
    max-height: 80px;
    min-height: 80px;
}

#work-bar {
    margin-top: -1.5rem;
    margin-bottom: .5rem;
}

#title-bar img {
    margin: 1rem 1rem;
}

@media only screen and (max-width: 450px) {
    #content-marker .item {
        width: 100%;
    }
}
@media only screen and (max-width: 900px) {
    #title-bar img {
        order: -1;
    }
    #extras .item, #socials .item {
        justify-content: center !important;
        padding: .5rem;
    }
    .item.work {
        width: 3.3rem;
        padding: .3rem;
        margin: .2rem;
    }
    .item.work .item-image {
        max-height: 50px;
        min-height: 50px;
    }
}

#big-logo {
    height: 140px;
    cursor: pointer;
}


.item.item--mark {
    position: relative;
}
.item.item--mark:before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    padding: .25em .5em;
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.25);
}
.item.item--new { background: hsla(186, 50%, 9%, 1); border: 1px solid hsla(0, 0%, 17%, 1); }
.item.item--new:before { content: 'New!'; background-color: rgb(38, 107, 115); }

.item.item--updated { background: hsla(27, 58%, 9%, 1); border: 1px solid hsla(0, 0%, 17%, 1); }
.item.item--updated:before { content: 'Updated!'; background-color: rgb(132, 79, 35); }


.notif {
    padding: .5em 1em;
    margin-bottom: 3em;
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.25) inset;
    background: hsla(0, 0%, 18%, 1);
    border: 1px solid hsla(0, 0%, 17%, 1);
}

.notif a {
    color: white;
    font-weight: bold;
}
