html, body {
    padding: 0px;
    margin: 0px;
}

#head {
    width: 100%;
    height: 150px;
    padding-left: 20%;
    box-sizing: border-box;
    box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
    -webkit-box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
    background-image: url("../images/head_bg.png");
}

#head img {
    height: 100%;
}

#image {
    text-align: center;
}

#image img {
    width: 50%;
}

a {
    text-decoration: none;
}

.btn {
    padding: 10px;
    border-radius: 5px;
    border: 1px #DDD solid;
    margin: 5px;
    color: #FFF;
}

.btn:hover {
    box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
    -webkit-box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 1px 3px 19px -3px rgba(0, 0, 0, 0.59);
}

.btn-g {
    background-color: green;
}

.btn-b {
    background-color: #0051A6;
}

.btn-r {
    background-color: #FF7F27;
}

#btn-box {
    text-align: center;
    padding: 15px;
}

@media(max-width:768px) {
    #head {
        height: 120px;
        padding-left: 5px;
        background-position: center;
    }
    #head img {
        max-height: 100%;
    }
    #image img {
        width: 100%;
    }
}

@media(max-width:500px) {
    #head {
        height: 120px;
        padding-left: 5px;
    }
    #head img {
        width: 100%;
    }
    #image img {
        width: 100%;
    }
}