@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .project-card {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

.project-card {
    border: 1.5px dashed black;
    padding: 20px;
    margin: 20px;
    width: 40%;
    min-width: 320px;
    display: inline-block;
    vertical-align: middle;

    color: black;
    text-decoration: none;

    box-shadow: 20px 20px 0 0px black;
}

.project-card:hover, .project-card:hover .status {
    background: black;
    color: white;
    border-color: white;
    cursor: pointer;
    /* Slight shake anim */
    animation: shake 0.05s; 
}

.project-card::after {
    clear: both;
}

.project-card > div {
    margin-bottom: 10px;
}

.project-title {
    font-size: 17px;
    text-decoration: underline;
}

div.status {
    margin-bottom: 0px;
    float: right;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid black;
}

div.status:hover {
    border-color: white;
}

/*
.status-released {
    background: #00E436;
    color: #008751;
    border: 1px solid #00E436;
}*/

/* Single project page */
.project-data {
    /*margin: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid black;*/
    min-width: 450px;
}

.project-data > .left, .project-data > .right {
    padding: 5px;
    display: inline-block;
}

div.images {
    padding: 5px;
}

ul.images {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
  
ul.images li {
    display: inline-block;
    margin: 10px;
}

ul.images li img {
    max-height: 320px;
    vertical-align: middle;
}

ul.images li:hover {
    animation: shake 0.05s; 
}

h4 {
    text-decoration: underline;
}

.highlight {
    text-decoration: underline;
}

.separator {
    border-bottom: 1px dashed black;
}

.small-secret {
    text-align: right;
    font-size: 14px;
    color: gray;
}

table.credits td {
    width:20%;
    padding-right: 20px;
    vertical-align: top;
}