@font-face {
    font-family: "Bondoni";
    src: url("../fonts/Bodoni\ 72.ttc");
}

@font-face {
    font-family: "Britany Signature";
    src: url("../fonts/BRITTANYSIGNATURE.TTF");
}
body{
    margin: 0;
    padding: 0;
}

.bg-black{
    background: rgba(0, 0, 0, 1);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 > br,p > br{
    display: none;
}
 
h1{
    font-family: "Britany Signature";
    font-size: 39px;
    font-weight: 500;
    opacity: 1;
}

h1 span{
    color: rgba(155, 24, 49, 1);
}

.bg-img{
    background: url(../img/fondo_bira.jpg) no-repeat center/contain;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container{
    position: relative;
}

.container_logo{
    position: absolute;
    top: 0px;
    right: -195px;
    width: 10rem;
}

.container_logo > img{
    width: 100%;
    height: 100%;
}

.bg-img > p{
    font-family: "Bondoni";
    font-weight: 900;
    font-size: 21px;
    letter-spacing: 1px;
}

.bg-img p > span{
    background: rgba(155, 24, 49, 1);
    color: rgba(247, 247, 247, 1);
   
}

footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer > a{
    display: flex;
    width: 7.9rem;
    justify-content: space-between;
    margin: 0 0 0 6rem;
    text-decoration: none;
    color: rgba(2, 2, 2, 1);
}

footer > a > i{
    font-family: "Bondoni";
    font-weight: 900;
    font-size: 31px;
}

footer > a > p{
    font-family: "Bondoni";
    font-weight: 900;
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1440px){
    .bg-img{
        background: url(../img/fondo_bira.jpg) no-repeat center/cover;
    }
}

@media (max-width: 800px){
    h1 {
        font-size: 28px;
        text-align: center;
    }
    .container_logo {
        position: absolute;
        top: 25px;
        right: -130px;
        width: 8rem;
    }
    .bg-img > p {
        font-size: 19px;
        text-align: center;
    }
}

@media (max-width: 570px){
    h1 > br,p > br{
        display: block;
    }
    h1 {
        line-height: 45px;
    }
    .container > figure{
        /*height: 22rem;*/
        height: 20rem;
        width: 8rem;
    }
    .container > figure > img{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .container_logo {
        top: 25px;
        right: -40px;
        width: 6rem;
    }
    footer > a {
        margin: 0 0 0 0rem;
        width: 8rem;
    }
    .bg-img > p {
        line-height: 25px;
        font-size: 17px;
    }
}

@media (orientation: landscape) and (max-height: 700px){
    .bg-black{
        height: 50rem;
    }
    .bg-img {
        height: 100%;
    }
}