* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

body {
    background-color: rgb(92, 191, 125);
    padding-top: 50px;
}

#contenedor {
    width: 500px;
    border: 1px solid gray;
    border-radius: 10px;
    margin: auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px black;
}

#titulo {
    text-align: center;
}

#imagen {
    display: block;
    margin: auto;    
}

#controles {
    display: flex;
    justify-content: center;
}

#tacos {
    text-align: center;
    font-size: 2rem;
    width: 25%;    
}

button {
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px blue;
    background-color: white;
    border: 0;
    transition: all 0.3s;
    color: rgb(81, 81, 81);
}

button:hover {
    box-shadow: 0 0 10px blue;
    
}

#costo {
    text-align: center;
    padding: 30px;
}

#mandar {
    display: block;
    width: 100%;
    border-radius: 10px;
    color: rgb(81, 81, 81);
}

#aviso {
    color: red;
    text-align: center;
    display: block;
    padding-top: 10px;
    visibility: hidden;
}

#tipo {
    text-align: center;
    width: 50%;
    border: 1px solid black;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 5px;
    display: block;
    color: rgb(81, 81, 81);
}


