body {
    background-color: #0C0C0C;
    color: #E8EBE4;
    font-family: 'Roboto', sans-serif;
}

.navbar {
    background-color: rgba(12, 12, 12, 0.8);
    border-color: transparent;
}

.navbar a,
.navbar a:visited,
.navbar a:active {
    color: #E8EBE4;
    text-transform: uppercase;
}

.navbar a:focus,
.navbar a:hover,
.nav li a:focus,
.nav li a:hover {
    color: #D7CF07;
    background-color: transparent;
    text-decoration: none;
}

.icon-bar {
    background-color: #49FF98;
}

.parallax {
    background-image: url('../images/background-pattern.svg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    animation: moveBackground 70s ease-out infinite alternate;
    transform: translate3d(0, 0, 0);
}

.parallax-small {
    background-image: url('../images/background-pattern.svg');
    min-height: 100px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    animation: moveBackground 70s linear infinite alternate;
    transform: translate3d(0, 0, 0);
}

.parallax-medium {
    background-image: url('../images/background-pattern.svg');
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    animation: moveBackground 70s linear infinite alternate;
    transform: translate3d(0, 0, 0);
}

.center {
    text-align: center;
    margin-top: 20vh;
}

@keyframes moveBackground {
    to {
        background-position-y: -1000px;
    }
}

#header {
    min-height: 100vh;
}

#nav-placeholder {
    height: 50px;
}

#sarahmizzi-logo {
    max-width: 100vh;
    min-width: 300px;
    background-color: rgba(12, 12, 12, 0.3);
}

.textalign-right {
    text-align: right;
}

#tagline {
    max-width: 70vh;
    min-width: 300px;
}

#about {
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    line-height: 2;
}

#self-portrait {
    width: 250px;
    margin-bottom: 20px;
}

#about a {
    color: #E8422C;
    font-size: 23px;
    margin-left: 5px;
}

#about a:hover, #about a:focus {
    text-decoration: none;
    color: #49FF98;
}

#braggingrights {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    background-color: rgba(12, 12, 12, 1);
    padding: 50px;
}

#braggingrights i {
    font-size: 45px;
}

#skills {
    background-color: #FFFFFF;
    height: 300px;
    color: #000000;
    font-size: 20px;
    overflow: hidden;
    text-align: center;
}

#skills .container,
#skills .container .row,
#skills .container .row .col-md-10 {
    height: 100%;
}

#skills .col-md-10 {
    position: relative;
}

#skills #skillname {
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 300px;
    transform: rotate(-45deg);
    left: calc(50% - 240px);
    height: 150px;
}

#skills #skillname span {
    position: absolute;
    height: 190px;
    transform-origin: bottom center;
}

#skills #wheel-center {
    height: 150px;
    width: 300px;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    background-color: #49FF98;
    position: absolute;
    bottom: 0px;
    left: calc(50% - 150px);
}

#portfolio .container {
    width: 100%;
    text-align: center;
    background-color: rgba(12, 12, 12, 0.5);
}

#portfolio ul {
    text-align: center;
    margin: 30px 0 15px 0;
    padding: 0;
}

#portfolio li {
    display: inline-block;
    width: 300px;
}

#portfolio img {
    display: block;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#portfolio figure {
    width: 300px;
    overflow: hidden;
    position: relative;
}

#portfolio figcaption {
    background: rgba(232, 66, 44, 0.9);
    color: white;
    display: table;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

#portfolio figcaption p {
    display: table-cell;
    font-size: 1.5em;
    position: relative;
    vertical-align: middle;
    width: 300px;
    height: calc(190px - 1em);
}

#portfolio li:hover figcaption {
    opacity: 1;
}

#portfolio img {
    display: block;
    height: auto;
    -webkit-transition: all 800ms ease-out;
    -moz-transition: all 800ms ease-out;
    transition: all 800ms ease-out;
    max-width: 100%;
    max-height: 100%;
}

#portfolio li:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    transform: scale(1.3);
}

#contact {
    text-align: center;
    background-color: rgba(12, 12, 12, 0.5);
}

#contact a {
    color: #FFFFFF;
    font-size: 45px;
    margin: 30px;
}

#contact a:hover, #contact a:focus {
    text-decoration: none;
    color: #D7CF07;
}

#posts-header {
    padding: 40px 0;
}

.blog-post-preview {
    background-color: #FFFFFF;
    color: #0C0C0C;
    padding: 20px 30px;
    margin: 30px 0;
}

.blog-post-title a {
    font-weight: 700;
    color: #E8422C;
    text-decoration: none;
    display: block;
}

.blog-post-title a:hover {
    color: #49FF98;
}

.blog-post-meta {
    text-transform: uppercase;
}

.blog-post-snippet {
    background: -webkit-linear-gradient(black, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.read-more {
    display: inline-block;
    width: 100%;
}

.read-more a {
    color: #D7CF07;
    text-decoration: none;
}

.read-more a:hover, .read-more a:focus {
    color: #49FF98;
    text-decoration: none;
}

.sidebar-module {
    margin: 30px 0;
}

.sidebar-module h4 {
    text-transform: uppercase;
}

.sidebar-module a {
    color: #D7CF07;
    text-decoration: none;
}

.sidebar-module a:hover {
    color: #49FF98;
}

.short-red {
    border-color: #E8422C;
    width: 200px;
}

.post-single-content {
    background-color: #FFFFFF;
    color: #0C0C0C;
}

.post {
    padding: 50px;
    text-align: justify;
}

.image-container {
    text-align: center;
}

.post a {
    color: #E8422C;
}

.post a:hover, .post a:focus {
    text-decoration: none;
    color: #49FF98;
}

.post h1, .post h2, .post h3, .post h4 {
    font-weight: 600;
}

.post-meta-date {
    float: right;
    text-transform: uppercase;
    font-weight: 600;
}

pre {
    border: none;
    border-radius: 0;
    background-color: #000000;
}

pre code {
    color: #FFFFFF;
}

.back-link {
    margin: 20px 0;
}

.back-link-text {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
}

