html {
    margin: 0;
    padding: 0;
    background: url(../img/background.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
    background-size: cover;
}
body {
    color: #fff;
    margin: 0 auto;
    font: 1em/1.3em Montserrat,Helvetica,sans-serif;
    text-align: center;
}
#container {
    min-width: 500px;
}
h1 {
    margin: 40px 0;
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    text-shadow: 0px 1px 1px #888;
}
div.btn {
    text-decoration: none;
    color: #fff;
    margin: 20px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 53px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0px 1px 1px #888;
}
.btn span.icon,.btn span.title {
    display: block;
    position: relative;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}
.btn span.icon {
    float: right;
    border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
    font-size: 23px;
    background-color: #00967f;
    -webkit-box-shadow: 0 3px 0 0 #007261;
    box-shadow: 0 3px 0 0 #007261;
    text-shadow: 0px 1px 1px #888;
}
.btn span.title {
    float: left;
    -webkit-box-shadow: 0 3px 0 0 #00ae94;
    box-shadow: 0 3px 0 0 #00ae94;
    background-color: #00cdae;
    border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px 0 0 6px;
}
.btn span.arrow-right {
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    -webkit-transition: all .15s;
    -transition: all .15s;
    -webkit-transition-property: left,right;
    transition-property: left,right;
    -webkit-box-shadow: -10px 0 0 0 #00cdae,-10px 3px 0 0 #00ae94;
    box-shadow: -10px 0 0 0 #00cdae,-10px 3px 0 0 #00ae94;
    border-left: 10px solid #00cdae;
}
.btn:active,.btn.active {
    height: 51px;
}
.btn:hover span.arrow-right {
    left: 10px;
}
.enjoy {
    font-size: 15px;
    width: 100%;
    margin-top: 40px;
}
.enjoy .fa-smile-o {
    margin-left: 3px;
    font-size: 20px;
}
