:root {
    --color-bread: #efa335;
    --color-tomato: #fc4e51;
    --color-lettuce: #a0e557;
    --color-meat: #912c2c;
    --color-cheese: #fccf3f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: Helvetica, sans-serif;
}
main {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
}
.title {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: 600;
    font-size: 2.5rem;
}
.app {
    display: flex;
}
.hamburguer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 25rem;
}
.menu {
    display: flex;
    flex-direction: column;
    align-items: space-evenly;
}
.btn {
    width: 15rem;
    height: 3rem;
    font-size: 1.7rem;
    margin: .5rem;
}
.bread-top {
    height: 7rem;
    width: 25rem;
    border: .5rem solid black;
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: var(--color-bread);
}
.tomato {
    height: 1.7rem;
    width: 23rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-top: .1rem solid black;
    border-bottom: .1rem solid black;
    border-left: .5rem solid black;
    border-right: .5rem solid black;
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem;
    border-bottom-left-radius: .2rem;
    border-bottom-right-radius: .2rem;
    background-color: var(--color-tomato);
}
.cheese {
    position: relative;
    height: 2.5rem;
    width: 24.5rem;
    margin-left: .25rem;
    margin-right: .25rem;
    border: .5rem solid black;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: var(--color-cheese);
}
.cheese-detail {
    position: absolute;
    top: .6rem;
    right: 1rem;
    width: 8rem;
    height: 2.5rem;
    border-bottom: .5rem solid black;
    border-right: .5rem solid black;
    transform: rotate(14deg);
    border-top-left-radius: 10rem;
    background-color: var(--color-cheese);
}
.lettuce {
    height: 2.5rem;
    width: 24.5rem;
    margin-left: .25rem;
    margin-right: .25rem;
    border: .5rem solid black;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: var(--color-lettuce);
}
.meat {
    height: 2.3rem;
    width: 23rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border: .1rem solid black;
    border-left: .5rem solid black;
    border-right: .5rem solid black;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    background-color: var(--color-meat);
}
.bread-bottom {
    height: 4rem;
    width: 25rem;
    border: .5rem solid black;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    background-color: var(--color-bread);
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    background-color: steelblue;
}
.footer .description {
    font-size: 1.2rem;
    color: aliceblue;
}