/* Estils generals */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.font-examples {
    text-align: center;
    margin: 20px;
}

h2 {
    margin-bottom: 20px;
}

.font-box {
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    color: #333;
    font-size: 1.25rem;
    text-align: left;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Tipus de lletra serif */
.font-serif {
    font-family: 'Georgia', serif;
}

/* Tipus de lletra sans-serif */
.font-sans-serif {
    font-family: 'Arial', sans-serif;
}

/* Tipus de lletra monoespai */
.font-monospace {
    font-family: 'Courier New', monospace;
}

/* Text en cursiva */
.font-italic {
    font-style: italic;
}

/* Text en negreta */
.font-bold {
    font-weight: bold;
}

/* Text en majúscules */
.font-uppercase {
    text-transform: uppercase;
}

/* Text centrat */
.text-center {
    text-align: center;
}

/* Font personalitzada de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.font-custom {
    font-family: 'Roboto', sans-serif;
}
