/* Font selection */

html, body {
    font-family: 'Palatino Linotypea', sans-serif;
}

h1, h2, h3 {
    font-family: 'Helvetica', sans-serif;
    text-align: center;
}

/* General Formatting for Website */

.no-subheaders {
    padding-bottom: 5%;
}

.background-white {
    background-color: #ffffff;
}

.background-grey {
    background-color: #F2F3F4;
}

.background-darkGrey {
    background-color: #27282b;
}

.background-img {
    background-color: black;
    background-size: cover;
}

h2 {
    font-size: 50px;
    text-align: center;
}

.white-header {
    color: #FFFFFF;
}

h3 {
    margin-bottom: 20px;
    color: #3284bf;
}

.left-blue-header{
    text-align: left;
}

h4 {
    font-size: 18px;
    font-weight:bold;
}

h5 {
    font-size: 30px;
    text-align: center;
    color: #3284bf;
}

p {
    font-size: 16px;
}

a {
    color: #3284bf;
}

.container {
    padding: 60px 140px;
}

#highlight-container {
    padding-top: 0%;
}

/* Navbar */
.navbar-nav > li > a, .navbar-brand, #navbar {
    padding-top: 5px; 
    padding-bottom: 5px;
    height: 50px;
    font-size: 30px;
}

.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
  min-height: 50px;
}

.navbar-toggle {
  float: none;
  margin: 0 auto;
}

.navbar {
    background-color: rgba(0,0,0);
    background: rgba(0,0,0);
    border-color: rgba(0,0,0);
}

.navbar .navbar-collapse {
  text-align: center;
}

.navbar-inverse li {
    font-color: #FFFFFF;
}

/* Landing Page */

header {
	background-image: url('../img/background-campus-2.jpeg');
    background-size: cover;
	height: 100vh;
	color: #000000;
	display: flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
    padding-top: 10%;
}

h1 {
    font-size: 84px;
    border-bottom:3px solid #000000;
    text-align: center;
}

header h2 {
    font-size: 40px;
    text-align: center;
    padding-bottom: 18%;
}

#white {
    color: #FFFFFF;
    padding-top: 2%;
}

/* About Me */
#aboutMe {
    padding: 50px 60px;
}

#mePic {
    height: 85%;
    width: 85%;
}

.center-link {
    text-align: center;
}

/* Quotes */

#left_quote {

}

#right_quote {

}

/* Lists */

ul {
    padding-left: 1.5em;
}
li {
    padding-left: 1em;
}

/* Highlights */

#links {
    padding-left: 5%;
    padding-right: 5%;
}

#links-bottom {
    padding-top: 22%;
    padding-bottom: 22%;
}

#highlight {
    padding-left: 0%;
    padding-right: 0%;
    padding-top: 2%;
    padding-bottom: 0%;
}

.black-band {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
    background-color: #000000;
}

.article-title-right {
    padding-top: 20%;
    padding-left: 5%;
}

.article-title-left {
    padding-bottom: 5%;
}

.titles-row img {
    width: 100%;
}

.titles-row {
    padding-top: 0%;
}

/* Skills */

#skills li {
    font-size: 18px;
}

.skill-rating {
    float: right;
    /* pink */
/*     color:  #FFA6C9; */
    /* blue */
    color: #3284bf;
}

.skill-title {
    font-weight: bold;
}

/* Projects */

#projects h2 {
    margin-bottom: 30px;
}

#outer-caption {
    text-align: center;
    margin-bottom: 40px;
}

/* Hover Effect for Projects */
.caption {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}
.caption__media {
    display: block;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
.caption__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px;
    color: white;
    transform: translateY(100%);
    transition: transform .35s ease-out;
}
.caption:hover .caption__overlay {
    transform: translateY(0);
}

.caption::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    transition: background .35s ease-out;
}
.caption:hover::before {
    background: rgba(0, 0, 0, .7);
}

/* Isotope for Projects */
 
.isotopeFilters a:visited, a:active, a:focus {
    font-weight: bold;
    text-decoration: none;
}
 
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
 
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

/* Contact */
#contact, #contact a {
    color: #FFFFFF;
    text-decoration: none
}

/* typed.js Cursor */
.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/* CSS code for smaller screens (ie. phone) */
@media (max-width: 767px) {
    .container {
        padding: 60px 20px;
    }

    #aboutMe {
        padding: 60px 20px;
    }
}
