body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    background-image: url('sfondo/s2.jpg');  /* Sfondo a schermo intero */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;  /* Sfondo fisso */
}

.screen {
    width: 100%;
    max-width: 375px;
    height: 100%;
    max-height: 667px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    box-sizing: border-box;
    margin-top: 10vh; /* Aggiunta di margine superiore per visibilità su desktop */
}

.icon-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
}

.icon-name {
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    text-align: center;
}
