* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(133, 166, 127);
    height: 100vh;
    overflow: hidden;
}

.background {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(133, 166, 127, 0.46), rgba(133, 166, 127, 0.46)), url("./img/background.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.galhos {
    position: absolute;
    right: 0;
}

.galhos-direita {
    transform: scaleX(-1);
    right: 0;
}

.galhos-esquerda {
    left: 0;
}

.ramos {
    position: absolute;
    bottom: 0;
    z-index: 20;
}

.ramos-esquerda {
    left: 0;
}

.ramos-direita {
    right: 0;
    transform: scaleX(-1);
}

.container-folha {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 680px;
    background-image: url("./img/folha.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;

    min-width: 900px;
}

.titulo {
    font-family: "Chau Philomene One", sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-text-stroke: 2px #5F1100;   
    margin-top: 20px;
}

.sub-titulo {
    font-family: "Beth Ellen", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: #2d374b;
    margin-top: -30px;
}

.label-presenca {
    font-family: "Yatra One", sans-serif;
    font-style: normal;
    font-size: 25px;
    font-weight: 400;

    margin-top: 20px;
    margin-bottom: 20px;
}

.color-red {
    color: #be3f23
}

.color-bege {
    color: #bc833c;
}

.color-green {
    color: #448447;
}

.container-cerca{
    position: fixed;
    bottom: 0px;
    z-index: 10;
}

.container-cerca img {
    height: 15vh;
    width: auto;
}

.cerca-direita{
    right: 0px;
}

.cerca-esquerda{
    left: 0px;
}

.d-f-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-t-20 {
    margin-top: 20px;
}

.div-central {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* border: 5px solid; */

    width: 100%;
}

.div-central-laterais {
    position: relative;
    width: 200px;
}

.celeiro {
    margin-left: 80px;
    /* width: 60%;
    height: auto; */
}

.data-hora {
    font-family: "Chau Philomene One", sans-serif;   
    font-style: normal;
    font-size: 35px;
    font-weight: 400;

    display: flex;
    flex-direction: column;

    position: absolute;

    /* width: 160px; */

}

.data-hora-esquerda {
    right: 0;
}

.data-hora-direita {
    left: 0;
}

.porco {
    position: absolute;
    bottom: 0;
    right: -10;
    width: auto;
    height: auto;
}

.cavalo {
    position: absolute;
    bottom: 0;
    left: 70;
    width: auto;
    height: auto;
}

.galinha {
    position: absolute;
    bottom: 50;
    left: 0;
    width: auto;
    height: auto;
}

.vaca {
    position: absolute;
    right: 0;
    width: auto;
    height: auto;
}

.beijaflor {
    position: absolute;
    top: 100px;
    left: 40px;
}

.container-local {
    display: flex;
    flex-direction: column;
}

.nome-local {
    font-family: "Chau Philomene One", sans-serif;
    font-style: normal;
    font-size: 30px;
    font-weight: 400;
}

.endereco-local {
    font-family: "Chau Philomene One", sans-serif;
    font-style: normal;
    font-size: 25px;
    font-weight: 400;
}

a {
    color: #448447;
}

a:hover {
    color: #448447;
}

.p-relative {
    position: relative;
}

.data-hora-mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    
    .container-folha {
        height: 90%;
        width: 95%;
        min-width: 0;
    }
    
    .titulo {
        font-size: 40px;
    }
    
    .sub-titulo {
        font-size: 20px;
        margin-top: -15px;
    }

    .label-presenca {
        font-size: 20px;
        padding: 0 20px;
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .div-central {
        height: 40vh;
    }

    .div-central-laterais {
        display: none;
    }

    .celeiro{
        height: 100%;
    }

    .data-hora-mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        margin-top: 10px;
    }

    .data-hora {
        font-size: 25px;
        position: relative;
    }

    .nome-local {
        font-size: 20px;
    }
    
    .endereco-local {
        font-size: 18px;
    }

    .cerca-esquerda {
        display: none;
    }

    .cerca-direita {
        display: none;
    }

    .beijaflor {
        display: none;
    }

    .galinha {
        display: none;
    } 

    .vaca {
        display: none;
    }

    .div-central-laterais {
        display: none;
    }
}

/* Para garantir que a regra de altura prevaleça no mobile */
@media screen and (max-height: 700px) {

    .div-central {
        height: 35vh;
    }
}

@media screen and (max-height: 635px) {

    .container-local {
        margin-top: -20px;
    }
}