body{
    cursor: default;
    font-family: system-ui, sans-serif, arial;
    text-align: center;
    background-color: #242424;
}

h1#titulo{
    color: white;
    text-shadow: 2px 2px 5px red;
    transition: transform 1s ease;
}

h1#titulo:hover{
    transform: scale(1.1);
}

form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

input#input{
    font-size: 2em;
    color: #000;
    border: 0.3rem solid black;
    border-radius: 1rem;
}

input#button{
    font-size: 2em;
    background-color: #f88;
    border: 0.2rem solid #00f;
    border-radius: 1rem;
}

input#button:hover{
    color: blue;
    cursor: pointer;
}

div.container {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

div.plato{
    margin: 0 auto;
    display: flex;
    align-items: center;  /* Esto alinea verticalmente a sus hijos */ 
    justify-content: center;   /* Esto alinea horizontalmente a sus hijos */
    background-color: white;
    border: 2px solid;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    box-shadow: 20px 20px 20px gray;
} 

div.pancho{
    display: flex;        
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div.pan{
    width: 300px;
    height: 50px;
    background-color: orange;
}

div.panSuperior{
    border-radius: 50px 50px 25px 25px;
}

div.panInferior{
    border-radius: 25px 25px 50px 50px;
}

div.salchicha{
    width: 350px;
    height: 50px;
    background-color: red;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}