*{
    box-sizing: border-box;
    margin: 0;
}

.Header{
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 20px;
    position: relative;
}

.Header a{
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

.Header button{
    background-color: transparent;
    border: none;
    width: fit-content;
    cursor: pointer;
    font-size: 2rem;
    color: white;
    position: absolute;
    left: 20px;
    transform: translateY(0%);
    transition: transform 0.40s ease-in-out;
}

.Side-Bar{
    height: 100vh;
    width: 300px;
    background-color: black;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: all 0.3s ease-in-out;
}

.Side-Bar-Hide{
    transform: translateX(-100%);
}

.Side-Bar .Menu{
    display: flex;
    flex-direction: column;
    padding: 0px;
    width: 100%;
}

.Side-Bar a{
    list-style: none;
    font-size: 1.5rem;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: white;
    transform: translateX(-100%);
}

#Pizza{
    transition: transform 0.40s ease-in-out, background-color 0.1s ease-in-out;
}
#Pasta{
    transition: transform 0.45s ease-in-out, background-color 0.1s ease-in-out;
}
#Steak{
    transition: transform 0.50s ease-in-out, background-color 0.1s ease-in-out;
}
#Hamburger{
    transition: transform 0.55s ease-in-out, background-color 0.1s ease-in-out;
}
#Cake{
    transition: transform 0.60s ease-in-out, background-color 0.1s ease-in-out;
}
#Pie{
    transition: transform 0.65s ease-in-out, background-color 0.1s ease-in-out;
}

.Side-Bar .Slide{
    transform: translateX(0); 
}

.Side-Bar a:hover{
    background-color: rgba(255, 255, 255, 0.3);
}

.Header .Slide-MenuButton{
    transform: translateY(-150%);
}

.Side-Bar .Slide-Button{
    transform: translateY(0%) rotateZ(0deg); 
}

.Side-Bar button{
    background-color: transparent;
    border: none;
    width: fit-content;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 23.2px;
    margin-right: 10px;
    transform: translateY(-150%) rotateZ(180deg);
    transition: transform 0.70s ease-in-out, color 0.2s ease-in-out;
}

.fa-xmark{
    font-size: 2rem;
    transform-origin: center;
    color: white;
}

.recipeCategories{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.recipeCategory{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 15px;
    width: 25%;
    height: 500px;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.recipeCategory:hover{
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.recipeCategory h3{
    margin: 10px 0;
    font-size: 1.5rem;
}

.recipeCategory img{
    width: 100%;
    object-fit: contain;
}
