* {
    box-sizing: border-box;
}
body {
    margin: 0;
}
.silex-default-container {
    background-color: #f6fa3a;
    border-radius: 1000px 500px 500px 500px;
    min-height: 100px;
}
body {
    container-type: normal;
    display: block;
    height: 100%;
    opacity: 1;
    position: fixed;
    transition: unset;
    visibility: visible;
    width: 100%;
}
@keyframes myAnimation {
  from {background-color: red;}
  to {background-color: yellow;}
}
@keyframes myAnimation2 {
  from {background-color:yellow;}
  to {background-color: red;}
}
#empty_container{
    background-color: red;
    display: block;
    border-radius: 20px;
    margin: 2% 5% 2% 5%;
    width: 90%;
    
}
#empty_container:hover{
    animation-name: myAnimation;
    animation-duration: 4s;
}
#empty_container:not(:hover){
    animation-name: myAnimation2;
    animation-duration: 4s;
}
#bottom {
    background-color: #e15b5b;
    border: 0px solid;
    border-radius: 500px 500px 50px 50px;
    box-shadow: unset;
    container-type: normal;
    display: flex;
    margin: 5% 5% 1% 5%;
    outline: none;
    position: static;
    visibility: visible;
    width: 90%;
}
#bottom:hover {
    background-color: #0062ff;
    transform: rotate(1deg);
}
#bottom:focus {
    background-color: azure;
}
:root {
    --css-1: #3498db;
}
#meat {
    background-color: #cc8800;
    border-radius: 20px;
    margin: 0px 5% 1% 5%;
    width: 90%;
}
#meat:hover {
    background-color: beige;
    height: 20%;
}
#bottom_bun {
    background-color: #e15b5b;
    border: 0px solid;
    border-radius: 50px 50px 500px 500px;
    box-shadow: unset;
    container-type: normal;
    display: flex;
    margin: 1% 5% 0% 5%;
    outline: none;
    position: static;
    visibility: visible;
    width: 90%;
}
#bottom_bun:hover {
    background-color: rgb(224, 64, 72);
}
#button2 {
    background-color: #00b7ff;
    border-radius: 20px 50px 20px 50px;
    box-shadow: unset;
    display: inline-flex;
    height: 20%;
    margin: 2% 2% 2% 2%;
    opacity: 1;
    position: relative;
    top: 0%;
    transition: opacity 2s ease-in-out;
    visibility: visible;
    width: 15%;
}
#button3 {
    background-color: #00b7ff;
    border-radius: 20px 50px 20px 50px;
    box-shadow: unset;
    display: inline-flex;
    height: 20%;
    margin: 2% 2% 2% 2%;
    opacity: 1;
    position: relative;
    top: 0%;
    transition: opacity 2s ease-in-out;
    visibility: visible;
    width: 15%;
}
#button2:focus{
    background-color: antiquewhite;
}
#button2:hover{
    background-color: #aeff00;
    transform: rotate(8deg);
}
#footer{
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    margin-top: 30%;
    animation: upDown 2s ease-in-out infinite;
}
#grid{
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 10px;
}
#grid div {
  padding: 10px;
  font-size: 30px;
  text-align: center;
}
#static_text{
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
    position: relative;
    background-color: transparent;
}
@keyframes upDown{
    0%{
        transform: translateY(0px);
        transform: rotate(0deg);
    }25%{
        transform: translateY(5px);
        transform: rotate(2deg);
    }
    50%{
        transform: translateY(10px);
        transform: rotate(-2deg);
    }
    100%{
        transform: translateY(0px);
        transform: rotate(0deg);
    }
}
#button_grid {
    background-color: #00b7ff;
    border-radius: 20px 50px 20px 50px;
    box-shadow: unset;
    opacity: 1;
    transition: opacity 2s ease-in-out;
    visibility: visible;
}
#footer_grid{
    display: grid;
    grid-template-columns: auto auto auto;
}