.programma {
    margin-top: 80px;
    margin-bottom: 160px;
    max-width: 1080px;
}

.floors {
    margin-top: 80px;
    max-width: 800px;
}

.floor {
    margin-top: 48px;
    margin-bottom: 160px;
    margin-left: 48px;
    margin-right: 48px;
}

.floor img {
    width: 100%;
}

/* ANIMATION */
@keyframes scale_floor {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.2);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .scale_floor {
        animation-name: scale_floor;
        animation-duration: .5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
}

/* RESPONSIVE TOGGLE */
@media only screen and (min-width: 981px) {
    .floor {
        margin-top: 48px;
        margin-bottom: 160px; 
    }
}

@media only screen and (max-width: 980px) {
    .floor {
        margin-top: 24px;
        margin-bottom: 80px; 
    }
}