.avvisoContainer {
    width: 100%;
    height: 100vh;
    background: #000000e8;
    position: fixed;
    z-index: 100;
    transform: scale(0.3);
    opacity: 0;
    transition: 1s;
    left: 0;
    top: 0;
    display: flex;
    overflow-y: auto;
}
.avvisoContainerOn {
     transform: scale(1);
     opacity: 1;
}
.boxContainer {
    width: 90%;
    min-height: 1000px;
    padding: 30px 0;
    max-width: 1200px;
    /* border: 3px solid; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.boxContainer img {
    max-width: 90%;
    border-radius: 20px;
    max-height: 800px;
}
.boxContainer h1 {
    font-size: 60px;
    text-transform: uppercase;
    color: #f6c004;
}
.chkBox label {
    font-size: 25px;
    color: white;
    margin-left: 15px;
    margin-bottom: 0;
}

input#chkOff {
    transform: scale(1.3);
    cursor: pointer;
}

.chkBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
span.avvisoClose {
    font-size: 30px;
    color: white;
    line-height: 35px;
    padding: 0 35px;
    background: #f6c004b8;
    border-radius: 30px;
    border: 3px solid white;
    margin: 30px 0 0 0;
    cursor: pointer;
    transition: .5s;
}
span.avvisoClose:hover {
    transform: scale(1.1);
}