h1{
    padding: 15px;
}

.Recipes{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.Recipe{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 15px;
    width: 23%;
    padding: 20px 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.Recipe:hover{
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Recipe h3{
    margin: 10px 0;
    font-size: 1.125rem;
}

.Recipe img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}
