.title-item {
    font-size: 16px;
    margin-bottom: 20px;
    color: black;
    font-family: "Palatino";
    padding:10px;
}


/*LARGE SCREEN*/
@media screen and (min-width: 601px) {
    #star-widget-content {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-evenly;
    }

    /*.job{*/
    /*margin-right: 10px;*/
    /*display: flex;*/
    /*flex-flow: row nowrap;*/
    /*}*/
    .star-widget-item img{
        max-height: 150px;
        max-width: 150px;
    }



    .star-widget-item-content{
        background-color: whitesmoke;
        border: 1px solid #c9c9c9;
        margin-bottom: 15px;

    }

    .star-widget-item-content .description {
        position:relative;
        bottom:10px;
        left:0px;
        display: none;
    }

    .star-widget-item-content:hover .description {
        display: block;
        max-width: 100%;
        max-height: 100%;
    }


    .star-widget-item-content:hover{
        box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
    }

    .job a{
        padding: 10px;
        color: black;
        flex-grow: 1;
    }

    .title-item{
        color: black;
        margin-bottom: 20px;
    }

    .star-widget-item{
    }

}

/*SMALL*/
@media screen and (max-width: 600px) {
    #star-widget-content {
        display: flex;
        flex-flow: column wrap;
        align-items: flex-start;
        padding: 25px;
    }

    .star-widget-item-content{
        background-color: whitesmoke;
        width: 100%;
        border: 1px solid #c9c9c9;
        margin-bottom: 20px;
    }

    .star-widget-item-content:hover{
        box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7);
    }
}

