#search_burger {
    padding: 20px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: auto;
    font-weight: 400;
    font-style: normal;
    animation: floatBurger 3s infinite ease-in-out;
}

@keyframes floatBurger {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#top_bun, #bottom_bun, #tomato input, #steak input[type="submit"], #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;
}

#tomato {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

#tomato input {
    width: 100%;
    padding: 16px;
    font-size: 24px;
    background-color: #d9534f;
    color: white;
    border-radius: 20px;
    border: none;
    font-weight: 200;
    font-style: normal;
    outline: none;
}

#tomato input:hover {
    transform: scale(1.05);
}

#steak {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

#steak input[type="submit"] {
    background-color: #5a3825;
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 20px;
    width: 100%;
    cursor: pointer;
    font-size: 24px;
    font-weight: 200;
    font-style: normal;
    transition: transform 0.2s ease-in-out;
}

#steak input[type="submit"]:hover {
    background-color: #3e2618;
    transform: scale(1.1);
}

#salad {
    height: 20px;
    background-color: #1ebb33;
    border-radius: 10px;
    width: 102%;
    margin: 10px 0;
}

#cheese {
    height: 20px;
    background-color: #f0e21d;
    border-radius: 10px;
    width: 102%;
    margin: 10px 0;
}

@media (min-width: 830px)
{
    #search_burger {
        width: 600px;
    }
} 

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