* {
    box-sizing: border-box;
}

body{
    font-family: "Courier New",serif;
}

#background {
    background-image: url('../img/forest09.jpg');
    background-size: cover;
    background-position-y: -50px;
    display: block;
    filter: blur(2px);
    -webkit-filter: blur(2px);
    height: 800px;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1;
}

#content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.2);
}

#business-card{
    background: rgba(255,255,255,.9);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding-top: 25px;
    height: 275px;
    text-shadow: rgb(224, 224, 224) 1px 1px 0px;
}

#about{
    background: rgba(255,255,255,.9);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    text-align: center;
    height: 275px;
    text-shadow: rgb(224, 224, 224) 1px 1px 0px;
}

a {
    font-weight: bold;
    color: rgba(255,255,255,.9);
}

#email {
    font-weight: bold;
    color: #333333;
    text-decoration: underline;
}

#home:focus, #home:hover, .nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    color: black;
    background-color: transparent;
}


.btn-gray {
    background-color: #333333;
    text-shadow: none;
    border-radius: 0;
    margin: 0px 5px;
    min-width: 100px;
}
.btn-gray:focus, .btn-gray:hover {
    text-decoration: none;
    background-color: #000;
    color: rgba(255,255,255,.9);
}

#ken, #meow {
    display: block;
    width: 100px;
    height: 100px;
    background-size: 100px;
    border: 1px solid black;
    border-radius: 50px;
    margin: 0px auto;
    margin: 15px auto;
}

#ken {
    background-image: url("../img/ken.jpg");
}
#meow {
    background-image: url("../img/meow.jpg");
}


@media (max-width: 768px) {
    #home, .nav>li>a, .navbar-white {
        color: white;
    }
    .navbar-white{
        background-color: rgba(33,33,33,.5);
    }
    #ken {
        display: none;
    }

}