#add-link {
    position: relative;
    display: block; 
    text-align: center; 
    text-decoration: underline;
    color: white;
    font-size: 2.4em !important;
    margin-top: 170px;
    height: auto;
}

#add-link:hover {
    color: gray;
    text-decoration: none;
}

#answer_burger {
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: auto;
}

#top_bun, #bottom_bun, .tomato, .steak, .steak-rotten, .salad, .cheese {
    box-shadow: inset -4px -4px 20px rgba(0, 0, 0, 0.25),  4px 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
}

#top_bun {
    background-color: #E4B465;
    border-radius: 40px 40px 0px 0px;
    height: 100px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

#bottom_bun {
    background-color: #E4B465;
    border-radius: 0px 0px 40px 40px;
    height: 60px;
    width: 100%;
    margin: 10px 0;
    margin-bottom: 150px;
}

.tomato, .steak, .steak-rotten {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 24px;
    color: white;
    border-radius: 20px;
    padding: 20px 30px;
    border: none;

    flex-wrap: wrap;
}

.tomato {  
    background-color: #d9534f;
}

.steak {
    background-color: #5a3825;
}

.steak-rotten {
    background-color: #006917;
    background-image: linear-gradient(135deg, #018634 25%, #225c1a 50%, #817266 75%);
    background-blend-mode: multiply;
}

.salad, .cheese {
    height: 20px;
    border-radius: 10px;
    width: 102%;
    margin: 10px 0;
}

#answer_burger img {
    background-image: cover;
    height: 150px;
    width: 150px;
}

.salad {
    background-color: #1ebb33;
}

.cheese {
    background-color: #f0e21d;
}

h2 {
    font-size: 1.4em;
    font-weight: bold;
}

p {
    font-size: 0.8em;
}

li {
    list-style:disc;
}

a {
    font-size: 1.4em;
    color: white;
}

a:hover {
    color: gray;
    text-decoration: none;
}

.tomato div, .steak div {
    text-align: left;
    flex: 1;
    margin: 20px;
    
}

.ingredient {
    flex: 0 auto !important;
}

@media (min-width: 1280px)
{
    #answer_burger {
        position: relative;
        top: 150px;
    }
} 