html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}

#sketch_container {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    /* This centers our sketch horizontally. */
    align-items: center;
    /* This centers our sketch vertically. */
    z-index: 9999;
}

.img_rotate {
    border-radius: 50%;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

.img_rotate:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.bg-primary {
    background-color: #fff !important;
    color: #222 !important;
}

.navbar {
    z-index: 9999;
    position: fixed;
}

.navbar-dark a, .navbar span {
    color: #222 !important;
}

.navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border: none !important;
}

.album {
    margin-top: 100vh;
    background-color: #fff !important;
    z-index: 99;
    position: relative;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menu_logo {
    position: relative;
    width: 40px;
    margin-right: 15px;
}

.jumbotron {
    position: fixed;
    top: 0px;
    z-index: 0;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
    background-color: #222;
    height: 100vh;
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.jumbotron p:last-child {
    margin-bottom: 0;
}

.jumbotron-heading {
    font-weight: 300;
    color: #fff;
}

.jumbotron .container {
    max-width: 40rem;
}

#jumbotron-image {
    width: 30%;
}

.img_layer {
    opacity: 1;
    -webkit-filter: blur(0px);
    /* Safari 6.0 - 9.0 */
    filter: blur(0px);
}

.img_layer:hover {
    -webkit-filter: blur(2px);
    /* Safari 6.0 - 9.0 */
    filter: blur(2px);
}

.section_title {
    text-align: center;
    margin: 20px 0 50px 0;
}

.projects_icon {
    position: absolute;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    font-size: 3em;
    color: #007bff;
    top: calc(50% - 1.5em);
}

footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    background-color: #222;
}

footer p {
    margin-bottom: .25rem;
}

.material-icons.md-48 { 
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 88px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transition-property: all;
    transition-duration: .5s;
}

.material-icons.md-48:hover {
    transform: rotate(180deg);
  }

  #footerContainer{
    left: 0;
    bottom: 0;
    position: fixed;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}