.detail {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 10px;
    z-index: 10;
    position: absolute;
}

.detail h1 {
    font-size: 2.2em;
    margin: 30px 0 30px 0;
}

.ingredient {
    text-align: left;
    margin-top: 10px;
    font-size: 1.3em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ingredient li {
    margin: 10px;
    width: 45%;
}

.prepa {
    font-size: 1em;
}

.form-del {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    transition: color 300ms ease-in-out;
}

.form-del:hover {
    color: red;
}

.btn-edit {
    background: transparent;
    outline: none;
    cursor: pointer;
    position: absolute;
    transition: color 300ms ease-in-out;
    border: none;
}

.TopDetail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 50px;
}

.centerButton {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.leftButton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.buttonHome {
    width: auto;
    border-radius: 50px;
    align-items: center;
    padding: 15px;
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

