@media (min-width: 1100px){
    .container {
        width: 1100px;
    }
}

.showcase-project {
    background:#242424;
    width: 100%;
    float: left;
    margin-bottom: 25px;
    border-radius: 5px;
    transform: scale(1);
    transition: transform ease 0.15s;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.showcase-project:hover {
    transform: scale(1.075);
}

.showcase-image {
    padding: 6px;
    max-height: 300px;
}

.showcase-details {
    padding: 0px;
    margin: 10px;
    display: flex;
    flex: 1 1;
    flex-direction: column;
}

.showcase-title {
    margin: 0px;
    margin-top: 10px;
}

.showcase-author {
    margin: 0px;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #999999;
}

.showcase-desc {
}

.showcase-quote {
    font-style: italic;
    color: #999999;
    margin-bottom: 0px;
}

.reset-a, .reset-a:hover, .reset-a:visited, .reset-a:focus, .reset-a:active  {
    text-decoration: none;
    color: inherit;
    outline: 0;
  }