html body * {
    color: white;
    text-shadow:
       -1px -1px 0 black,  
        1px -1px 0 black,
        -1px 1px 0 black,
         1px 1px 0 black;

    font-family: Josefin Sans;
    font-weight: 100;

    -webkit-touch-callout: none; /* iOS Safari */
     -webkit-user-select: none;   /* Chrome/Safari/Opera */
     -khtml-user-select: none;    /* Konqueror */
     -moz-user-select: none;      /* Firefox */
     -ms-user-select: none;       /* IE/Edge */
     user-select: none;
}

h1, h2, h3, h4, h5, h6, #home li { cursor: default;}

td {
    vertical-align: middle !important;
}

.navbar-toggle {
    border-color: wheat !important;
}

.navbar-toggle .icon-bar {
    background-color: wheat !important;
}

.navbar-toggle:focus {
    background-color: rgba(255,255,255,0.35) !important;
}

#home{
    background: url('img/home.jpg') no-repeat center center fixed;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;

    -webkit-background-repeat: no-repeat !important;
    -moz-background-repeat: no-repeat !important;
    -o-background-repeat: no-repeat !important;
    background-repeat: no-repeat !important;

    -webkit-background-position: center center !important;
    -moz-background-position: center center !important;
    -o-background-position: center center !important;
    background-position: center center !important;

    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

.home-bg-overlay {
    background: rgba(0,0,0,0.3);
    padding-top: 150px;
    padding-bottom: 50px;
}

.divider {
    border-color: rgba(30,30,30,0.6);
}

#thesis {
    cursor: pointer;
}

.pb10 {
    padding-bottom: 10px;
}

#projects {
    background: url('img/projects.jpg') no-repeat center center fixed;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;

    -webkit-background-repeat: no-repeat !important;
    -moz-background-repeat: no-repeat !important;
    -o-background-repeat: no-repeat !important;
    background-repeat: no-repeat !important;

    -webkit-background-position: center center !important;
    -moz-background-position: center center !important;
    -o-background-position: center center !important;
    background-position: center center !important;

    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

.bg-overlay {
    padding: 50px 0;
    background: rgba(0,0,0,0.3);
}

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

.navbar-brand {
    cursor: default !important;
    user-select: disable !important;
}

.navbar-brand, .navbar-nav>li>a {
    color: wheat !important;
}

project {
    display: block;
    padding: 20px;
    padding-bottom: 30px;
    background: rgba(0,0,0,0.8);
    margin-top: 30px;

    -webkit-transition-duration: .5s; /* Safari */
    transition-duration: .5s;
    -webkit-transition-timing-function: ease; /* Safari and Chrome */
    transition-timing-function: ease;
}

project:not(.incoming):hover {
    -ms-transform: scale(1.11,1.11); /* IE 9 */
    -webkit-transform: scale(1.11,1.11); /* Safari */
    transform: scale(1.11,1.11);

    -webkit-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.75);
}

.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-weight: 200;
    margin-bottom: 5px;
}

.incoming-title {
    position: absolute;
    cursor: default;
    top: 45%;
    left: 0;
    right: 0;
    font-weight: 200;
}

#contact {
    background: url('img/contact.jpg') no-repeat center center fixed;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;

    -webkit-background-repeat: no-repeat !important;
    -moz-background-repeat: no-repeat !important;
    -o-background-repeat: no-repeat !important;
    background-repeat: no-repeat !important;

    -webkit-background-position: center center !important;
    -moz-background-position: center center !important;
    -o-background-position: center center !important;
    background-position: center center !important;

    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

.contact {
    margin-top: 20px;
}

.contact * {
    text-shadow: none;

    -webkit-transition-duration: .25s; /* Safari */
    transition-duration: .25s;
    -webkit-transition-timing-function: ease; /* Safari and Chrome */
    transition-timing-function: ease;
}

.contact a {
    background: rgba(255,255,255,0.35);
    border: 1px solid black;

    color: black;
    letter-spacing: 2px;
    padding-bottom: 5px;
}

.contact i {
    color: black;

        -webkit-transition-duration: .25s; /* Safari */
    transition-duration: .25s;
    -webkit-transition-timing-function: ease; /* Safari and Chrome */
    transition-timing-function: ease;
}

.contact a:hover {
    -ms-transform: scale(1.11,1.11); /* IE 9 */
    -webkit-transform: scale(1.11,1.11); /* Safari */
    transform: scale(1.11,1.11);

    color: white;
    background: rgba(0,0,0, 0.8);

    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
}

.contact a:hover i {
    color:white;
}

.contact a:active {
    background: wheat;
    color: black !important;
    -ms-transform: scale(1,1); /* IE 9 */
    -webkit-transform: scale(1,1); /* Safari */
    transform: scale(1,1);
}

.contact a:active i {
    color: black;
}


@media only screen and (max-device-width: 768px) {
    #home, #projects, #contact {
        -webkit-background-attachment: scroll !important;
        -moz-background-attachment: scroll !important;
        -o-background-attachment: scroll !important;
        background-attachment: scroll !important;
    }
}
