body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 1em 0;
    text-align: center;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 1em 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
}

.menu li {
    margin: 0;
}

.boton {
    background-color: #3498db;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.boton i {
    font-size: 1.2em;
}

.boton:hover {
    background-color: #2980b9;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

main {
    padding: 2em;
    text-align: center;
}
