body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.logo {
    width: 150px;
    height: auto;
}

.title-container {
    text-align: center;
    margin-bottom: 50px;
}

.button-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 10px;
    border: 2px solid #444;
    border-radius: 10px;
    background-color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    width: 250px;
    transition: background-color 0.3s ease;
}

.button img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px auto;
    display: block;
}

.button-text {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.button:hover {
    background-color: #dddddd;
}

/* Responsive su schermi bassi */
@media (max-height: 600px) {
    .title-container {
        margin-bottom: 30px;
    }

    body {
        padding-top: 100px;
    }
}
