body {
    width: 100%;
    height: 100%;
    font-family: 'Lora', "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    background-color: #000;
}


a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-decoration: underline;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

h1.logo {
    font-family: 'Source Code Pro', monospace;
    color: black;
    font-size: 12vw;
}

h2 {
    text-transform: uppercase;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(20, 20, 20);
}

.line-through {
    text-decoration: line-through;
}

nav.navbar {
    height: 90px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

nav.navbar div.navbar-collapse {
    text-transform: uppercase;
}

nav.navbar a {
    text-decoration: none;
    color: white !important;
}

nav.navbar a:hover {
    text-decoration: underline;
    color: white !important;
}

footer p {
    margin-top: 0.6rem;
}

.top-nav-collapse {
    padding: 0;
    background-color: #000;
    height: 60px !important;
}

.content-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-items: center;
}

.content-section > div {
    width: 100%;
}

.intro {
    width: 100%;
    color: #fff;
    background-color: rgb(18, 94, 93);
}

.intro div.brand-heading {
    text-align: center;
    padding: 10%;
}

.me-section {
    width: 100%;
    padding: 50px 0;
    background-color: rgb(94, 53, 106);
    font-size: 150%;
}

.projects-section {
    width: 100%;
    padding: 5rem;
    background-color: rgb(136, 44, 100);
}

.projects-section ul.projects a:hover div.tags {
    opacity: 1;
}

.projects-section ul.projects a:hover div.desc {
    opacity: 1;
}

.projects-section ul.projects a:hover div.name {
    color: white;
}

.projects-section li.project {
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}


.projects-section .image-border {
    position: relative;
}

.projects-section .image-border div.tags {
    bottom: 0;
    left: 0;
    height: 60px;
}

.projects-section .image-border div.desc {
    top: 0;
    left: 0;
    height: 76px;
}

.projects-section .image-border div.overline {
    opacity: 0;
    position: absolute;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.9);
    color: white;
    padding-top: 5%;
    text-align: center;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    transition: opacity .3s;
    font-weight: normal;
}

.contact-section {
    width: 100%;
    padding: 50px 0;
    background-color: rgb(60, 86, 138);
}

nav.navbar {
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

nav.top-nav-collapse button.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.5);
}

.navbar-collapse li.nav-item {
    text-align: right;
}

.grayscale {
    filter: grayscale(1);
}

/* Ribbon */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}
.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #1e1e1e;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 15px 0;
    background-color: #1e1e1e;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
}

/* top right*/
.ribbon-top-right {
    top: -10px;
    right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before {
    top: 0;
    left: 0;
}
.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}
.ribbon-top-right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
    font-size: 75%;
}
