html, body {
    margin: 0;
    height: 100%;
}

body{
    background: url(/imagens/fundo_hiperfrango.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.content{
    text-align: center;
    position: absolute;
    width: 100%;
    top: 10%;
}

.content .mao{
    text-align: right;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.content .mao img{
    width: 328px;
    max-width: 90%;
}

.content .logo img{
    width: 224px;
    max-width: 90%;
}

.content .frase{
    margin-top: 55px;

}
.content .frase img{
    width: 671px;
    max-width: 90%;
}

.footer{
    padding: 15px 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer .linha_galo{
    width: 100%;
}

.footer .morada{
    display: block;
    margin: 0 auto;
}


@media screen and (max-width: 1400px){

    .content .logo img {
        width: 200px;
    }

    .content .frase img {
        width: 600px;
    }

    .content .mao img {
        width: 290px;
    }
}

@media screen and (max-width: 1200px){
    .content .mao {
        top: 40%;
    }
}

@media screen and (max-width: 992px){

    .content{
        position: relative;
        top: unset;
    }
    .content .logo{
        margin-top: 50px;
    }

    .content .logo img {
        width: 160px;
    }
    .content .frase {
        margin: 50px 0;
    }

    .content .mao {
        display: none;
    }

    .footer{
        position: relative;
        bottom: unset;
        left: unset;
    }

    .footer .morada {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px){
    .content .mao img {
        width: 50%;
    }
}