
@font-face {
    font-family: 'receta'; /* Nombre con el que llamarás a la fuente después */
    src: url('./static/PlusJakartaSans-Medium.ttf') format('ttf'), /* Ruta del archivo */
         url('./static/PlusJakartaSans-Bold.ttf') format('ttf');
    font-weight: 400; /* Peso de la fuente */
    font-style: normal; /* Estilo de la fuente */
    font-display: swap; /* Optimiza la carga para que el texto siempre sea visible */
}

/* Aplicar la fuente a tus elementos HTML */
body {
    font-family: 'receta', sans-serif;
    background-color: rgb(122, 158, 115);
}

.titulo {
    background-color: rgb(248, 211, 165);
    width: 100%;
    height:5%;
    max-height: 80px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:20px;
    text-align: center;
    padding:20px 30px;
    border-radius: 20px;
    border-left: 2px black;

}

button {
    background-color: rgb(248, 211, 165);
    width: 40%;
    max-width: 400px;
    border: none;
    border-left:2px rgb(6, 63, 35);
    border-radius: 10px;
    font-family:'receta';
    font-size:larger;
    padding: 2px 20px;
    cursor: pointer;

}