@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Gluten:wght@300&display=swap');port url('https://fonts.googleapis.com/css2?family=Gluten:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk&display=swap');

@font-face {
    font-family: 'Augie';
    src: url('../fonts/augie.ttf') format('truetype');
  }

:root{
    --cor-fundo: rgb(255, 255, 255);
    --cor-hover: rgb(118, 180, 145);
    --cor-primaria: rgb(0, 0, 0);
}


body.no-scroll {
    overflow: hidden;
}

 .conteudo {
    margin-bottom: 48px;
    border-top: 0.4px solid #FFF2E7;
    height: 100%;
    width: 100%;
}

.texto-titulo {
    font-family: 'Fredoka One', 'cursive';
    font-weight: 400;
    font-size: 75px;
    color: #FBE9A8;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    padding-bottom: 40px;
    text-align: center;
    margin-top: 60px;
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 2vw;
}

.gallery-items{
    width: 410px;
    height: 100%;
    border: 10px solid #FFF;
    box-shadow: 5px 5px 5px 2px #0006;
    transition: transform .3s linear;
    margin-top: 10px;
    
}

.gallery-items:hover {
    transform: scale(1.1);
}

.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.small-img{
    height: 100%;
    cursor: pointer;
    transition: all linear 0.4s;
}
 
#modal_img{
    width: 65vw;
    transform: scale(0);
    transition: all linear .3s;

}

.modal_active #modal_img{
    transform: scale(1);
}
.modal{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;
    visibility: hidden;
    z-index: 1;
    opacity: 0;
    transition: visibility 0.8s linear, opacity 0.5s linear;
    overflow-y: auto;
    margin-top: -306px;
    overflow: auto;
    
    
}

.modal-content{
    position: absolute;
    padding: 2em;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.26), 0 26px 52px rgba(0, 0, 0, 0.26);
    text-align: center;
    margin-left: 220px;
}



.download-button {
    color:#fff;
    background-color: #000;
    position: absolute;
    top:10px;
    right: 55px;
    padding: 11px 10px;
    font-size: 15px;
    border:solid 1px #fff;
    transition: all ease-out .4s;
    cursor: pointer;
}

.download-button:hover{
    background-color: #f00;
}


#bt_close{
    color:#fff;
    background-color: #000;
    position: absolute;
    top:10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 25px;
    border:solid 1px #fff;
    transition: all ease-out .4s;
    cursor: pointer;
}
#bt_close:hover{
    background-color: #f00;
}

.modal_active{
    visibility: visible;
    opacity: 1;

}

.button-lingue {
    text-align: center;
    margin-top: 55px;
}

.buttom-lingue-item {
    width: 380px;
    height: 90px;
    border: none;
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    cursor: pointer;
    transition: background.3s;
    margin-top: 15px; 
    background-color: #46A5CE;

}

.buttom-lingue-item:hover {
    background-color: #2b7ea1;
}


@media (max-width: 1308px) {

    .lettera-item {
        margin: 1px 5% 0;
    }
    
    .modal {
        height: 116vh;
    }
    
    .modal-content {
        margin: 10% 12%;
        padding-bottom: 6em;
    }
}

@media (max-width: 830px) {

    .texto-titulo {
        font-size: 80px;
    }

    .modal-content {
        padding-bottom: 4em;
    }
    
}

@media (max-width: 600px) {

    .modal-content {
        padding-bottom: 2em;
        padding-top: 3em;
    }
    
}

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

    .texto {
        margin-top: 40px;
    }

    .texto-titulo {
      font-size: 70px;
      font-weight: 300;
    }

    .modal-content {
        padding-top: 2em;
        margin-top: 30%;
    }
    
}

@media screen and (max-width: 420px) {
    .texto-titulo {
      font-size: 55px;
      font-weight: 300;
    }

    .buttom-lingue-item {
        width: 80%;
        height: 12%;
        font-size: 25px;
    }

    .modal-content {
        margin-top: 60%;
    }

    .modal {
        height: 125vh;
    }
}

@media screen and (max-width: 330px) {
    .lettera-item {
        font-size: 16px;
    }

    .modal-content {
        margin-top: 80%;
    }
}  

@media screen and (max-width: 310px) {
    .texto-titulo {
      font-size: 50px;
      font-weight: 300;
    }

}  