.recipes-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.single-post {
    padding: 20px;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    height: 515px;
}

.post-thumbnail {
    width: 100%;
    height: 280px !important;
    object-fit: cover;
    margin-bottom: 17px;
}

.post-type {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
}

.post-title {
    width: 100%;
    max-width: 496px;
    font-size: 34px;
    line-height: 34px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 68px;
}

.post-author-and-date {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    line-height: 22px;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

.post-author-and-date:nth-child(2) {
    text-align: end;
}

.see-post-button, .see-more-button, .see-recipe-button {
    background-color: #04AA52;
    height: 50px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 0!important;
}

.see-post-button, .see-recipe-button {
    width: 100%;
    transition: ease-out .2s;
}

.see-recipe-button:hover, .see-recipe-button:focus, .see-more-button:hover, .see-more-button:focus {
    background-color: #363636;
    color: #ffffff;
}

.see-post-button:hover, .see-post-button:focus {
    background-color: #000000;
    color: #ffffff;
}

.see-post-button:hover .see-post-button-text, .see-post-button:focus .see-post-button-text, .see-recipe-button:hover .see-post-button-text, .see-recipe-button:focus .see-post-button-text {
    margin-right: 10px;
    margin-left: 5px;
}

.see-post-button-text {
    margin-right: 5px;
    transition: ease-out .2s;
    color: #FFFFFF !important;
    font-family: "Oswald", sans-serif;
}

.see-more-button-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
}

.see-more-button {
    width: 260px;
    transition: ease-out .2s;
    height: 50px;
}

.see-more-button:focus {
    color: #ffffff;
    background-color: #04AA52;
}

.cant-load-text {
    width: 800px;
    font-family: "Oswald", sans-serif;
    color: #363636;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.back-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    background-color: #04AA52;
    transition: ease-out .2s;
}

.rotate {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
