/* Sfondo generale */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFD1DC;
    font-family: Arial, sans-serif;
}

/* Contenitore centrale */
.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrare il contenuto */
    height: 90%;
    width: 90%;
    padding: 40px;
    box-sizing: border-box;
}

/* Box centrale */
.box {
    background-color: #D77CD8;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo centrale */
.logo-centrale {
    max-width: 160px;
    margin-bottom: 5px; /* Ridotta la distanza rispetto al box */
	margin-top: 0px;
}

/* Stile dei bottoni */
.button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 30px;
    margin: 15px 0; /* Margini adattati per un equilibrio verticale */
    width: 100%;
    transition: background-color 0.3s;
    overflow: hidden;
}

/* Sezione immagine nei bottoni */
.button img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* Colori personalizzati dei bottoni */
.button-1 {
    background-color: #FF0000;
    color: white;
}

.button-1:hover {
    background-color: #FF4444;
}

.button-2 {
    background-color: #000000;
    color: white;
}

.button-2:hover {
    background-color: #333333;
}

.button-3 {
    background-color: #962FBF;
    color: white;
}

.button-3:hover {
    background-color: #A64DBF;
}

.button-4 {
    background-color: #0000FF;
    color: white;
}

.button-4:hover {
    background-color: #3333FF;
}

.button-5 {
    background-color: #000000;
    color: white;
}

.button-5:hover {
    background-color: #333333;
}

/* Stile del footer */
footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    color: black;
}
