/* Estilo global */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    padding: 20px;
    font-size: 2em; /* Tamaño de letra para encabezados */
}

/* Estilos para secciones */
section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Estilos para botones */
.button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    text-decoration: none;
    font-size: 1em;
}

.button:hover {
    opacity: 0.8;
}
