body {
    background: var(--bg-100);
    padding: 0;
    margin: 0;
    font-family: 'Expletus Sans', sans-serif;
    color: var(--text-100);
}
button{
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-100);
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-200);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-100);
}

::-webkit-scrollbar-thumb:active {
    background-color: var(--primary-100);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: rgb(139, 21, 56); /* Color de fondo RGB */
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between; /* Espacia la imagen y el título */
    align-items: center;
    text-align: center; /* Centra el texto en el header */
}

header h1 {
    font-family: 'Expletus Sans', cursive;
    font-size: 2.5em;
    margin: 0;
    flex-grow: 1; /* Permite que el título ocupe el espacio restante */
}

header img {
    height: 50px;
    width: auto;
}

main {
    padding: 40px;
    text-align: center;
}
main h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.section {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

.section h3 {
    color: rgb(139, 21, 56);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.section form {
    display: flex;
    flex-direction: column;
}

.section input[type="file"],
.section select {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.section button {
    background-color: rgb(139, 21, 56);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.section button:hover {
    background-color: #b0174d;
}

.button-container {
    margin-top: 30px;
}
.button-container a {
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 10px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}
.button-container a:hover {
    background-color: #2980b9;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
footer p {
    margin: 0;
}