*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background-color: #faf3eb;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu{
    text-align: center;
  
}
h1{
    color: #8b4513;
    margin-bottom: 2rem;
    font-size: 5rem;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 2rem;
}

td {
    padding: 1.2rem 2rem;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

tr{
    border-bottom: 0.1rem solid #ddd;
}

tr:hover {
    background-color: #f1e0d1;
    color: #d2691e;
}

.icon {
    font-size: 2.4rem;
    text-align: center;
    width: 4rem;
}

.name {
    text-align: left;
}

.price {
    font-weight: bold;
    text-align: right;
    width: 6rem;
}