/*Estilos bolsa de trabajo*/

/*Paleta de colores*/
:root{
    --azul-50: #f1f7fe;
    --azul-100: #e3edfb;
    --azul-200: #c0dbf7;
    --azul-300: #89bef0;
    --azul-400: #4a9ce6;
    --azul-500: #2380d4;
    --azul-600: #1565b7;
    --azul-700: #125092;
    --azul-800: #134479;
    --azul-900: #153b65;
    --azul-950: #0e2543;
}

h1{
    text-align: center;
    font-size: 1.8em;
    color: var(--azul-950);
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.container p{
    text-align: center;
    font-size: 18px;
    margin: 10px;
}

.imagen-trabajo{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--azul-950);
    color: var(--azul-50);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}