.app-main {
    background-image: url('/img/unicam-background.png');
    background-repeat: no-repeat;
    background-position: right;
}

.app-main .app-content {
    flex: 1;
    position: relative; /* Necessario per ancorare i figli */
    height: 100vh; /* Dimensione totale */
    width: 100%; /* Riempi tutto lo spazio orizzontale */
}

.app-main .app-content .app-content-child {
    position: absolute; /* Sovrapposti */
    top: 0;
    left: 0;
    height: 100%; /* Riempi verticalmente */
    width: 100%; /* Riempi orizzontalmente */
}

.app-main .app-content .app-content-child .app-content-body-background {
    z-index: 10;
}

.app-main .app-content .app-content-child .app-content-body {
    z-index: 100;
    background-color: transparent;
}
