.desc-image p {
    margin-left: 30%;
    margin-right: 30%;
    font-family: 'Yanone Kaffeesatz';
    font-size: 24px;
}

.recipes-title {
    margin-left: 10px;
    margin-top: 10px;
    font-family: 'Yanone Kaffeesatz';
    font-size: 50px;
}

.desc-image {
    margin-top: 10vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65),rgba(0, 0, 0, 0.65)),url("../images/recipes/recipedesc.jpg");
    background-size: cover;
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: white;
}

.desc-image h1 {
    font-family: 'Amatic SC';
    font-size: 4vw;
}

.recipes-window {
    width: 90%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.recipe-wrap {
    width: 400px;
    height: 250px;
    text-decoration: none;
    color: black;
    margin: 10px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.recipe-wrap:hover .text-wrap {
    transform: translateY(60%);
    font-size: 30px;
}

.text-wrap {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(230, 169, 55);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    font-family: 'Yanone Kaffeesatz';
    font-size: 24px;
    z-index: 3;
    transform: translateY(80%);
    transition: transform 0.3s;
}

.text-wrap p {
    margin-left: 10px;
    margin-top: 10px;
    transition: font-size 0.3s;
}

.pollen img {
    height: 100px;
}

@media screen and (max-width:1048px){
    .desc-image p {
        margin-left: 10%;
        margin-right: 10%;
        font-size: 12px;
        margin-top: 10px;
    }
    .desc-image h1 {
        font-family: 'Amatic SC';
        font-size: 7vw;
    }
    .recipes-window {
        width: 100%;
    }

    
}

