html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.text-vertical-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.text-vertical-center h1 {
    margin: 0;
    padding: 0;
    font-size: 4.5em;
    font-weight: 700;
}

/* Botões Customizados para Espedito Pacheco */

.btn-dark {
    border-radius: 0;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

.btn-light {
    border-radius: 0;
    color: #333;
    background-color: rgb(255,255,255);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: #333;
    background-color: rgba(255,255,255,0.8);
}

/* Custom Horizontal Rule */

hr.small {
    max-width: 100px;
}

/* Side Menu */

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    background: #273038;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#sidebar-wrapper h4 {
    position: fixed;
    bottom: 5px;
    color: #fff;
    padding-left: 8px;
    font-size: 1em;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #c6c6c6;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #c6c6c6;
    text-shadow:
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#menu-toggle {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
}

#sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.toggle {
    margin: 5px 5px 0 0;
}

/* Header da pagina e todos seus componentes */

.header {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/bg.jpg) no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.header h1 a, h1 a:hover {
    color: #fff;
    text-shadow: #00EEFF 0em 0.03em 0.3em;
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#00EEFF,direction=45);
    font-size: 1.2em;
    text-decoration: none;
}

.header h3 a, h3 a:hover {
    color: #fff;
    text-shadow: black 0.1em 0.1em 0.1em;
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    font-size: 1.5em;
}


@media (max-width:768px){
    .header h1 a, h1 a:hover {
        font-size: 0.9em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .header h3 a, h3 a:hover {
        font-size: 1.6em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
}
@media (max-width:720px){
    .header h1 a, h1 a:hover {
        font-size: 0.75em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .header h3 a, h3 a:hover {
        font-size: 1.4em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
}
@media (max-width:480px){
    .header h1 a, h1 a:hover {
        font-size: 0.63em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .header h3 a, h3 a:hover {
        font-size: 1em;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
}

.header i {
    font-size: 8em;
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* Sobre a Musica */

.sobreamusica {
    padding: 50px 0;
}

/* Canção */

.cancao {
    padding: 50px 0;
}

.cancao-item {
    margin-bottom: 30px;
}

.cancao img {
    width: 100%;
}

/* Portfolio */

.espedito {
    padding: 50px 0;
}

.espedito-item {
    margin-bottom: 30px;
}

.espedito-item video{
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
}

.img-espedito {
    margin: 0 auto;
    box-shadow: 0px 0px 2px 2px #c6c6c6;
    -webkit-box-shadow: 0px 0px 2px 2px #c6c6c6;
    -moz-box-shadow: 0px 0px 2px 2px #c6c6c6;
    border-radius: 5px;
}

.img-espedito:hover {
    box-shadow: 0px 0px 2px 2px #000;
    -webkit-box-shadow: 0px 0px 2px 2px #000;
    -moz-box-shadow: 0px 0px 2px 2px #000;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

/* Baixar a Musica */

.baixarmusica {
    padding: 50px 0;
}

.baixarmusica i {
    font-size: 200px;
    padding-top: 80px;
}

.baixarmusica i:hover {
    color: #fff;
    font-size: 220px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.baixarmusica p {
    font-size: 1.5em;
}

.baixarmusica a {
    color: #fff;
}

.Copyright-and-Author p {
    text-align: center;
    margin-bottom: 0px;
}
.Copyright-and-Author img {
    width: 120px;
    margin-left: 2px;
}

footer {
    padding: 100px 0;
}