CONCURS DISSENY DESSUADORA ENGINYERIA MECATRÒNICA 2026
Votacions obertes. Molta sort a tots els participants!
/* El contenidor assegura que s'adapti a l'espai i quedi al mig */
.contenidor-boto {
display: flex;
justify-content: center;
width: 100%;
}
.boto-vermell {
background-color: #cf0a2c;
color: #ffffff;
padding: 16px 32px; /* Marges interiors més grans */
display: inline-flex;
justify-content: center;
align-items: center;
max-width: 100%;
box-sizing: border-box;
text-align: center;
text-decoration: none !important;
font-size: 20px; /* Lletra més gran */
font-weight: bold;
border-radius: 8px; /* Vores una mica més arrodonides perquè quedi millor amb la nova mida */
transition: background-color 0.3s ease;
border: none;
}
/* Efecte quan passes el ratolí per sobre */
.boto-vermell:hover {
background-color: #a30823;
color: #ffffff;
}