.dev-item {
    position: relative;
    width: 30vw;
    min-width: 40vmin;
    padding: 0.5em;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.35);
    background-color: #D6EBFF;
    border-radius: 1px;
    border: 1px dotted black;
    margin: 9vh auto 0;
}

.dev-header {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 auto 5px;
}

.dev-title {
    float: left;
}

.dev-close {
  font-family: Arial;
  color: #575757;
  font-size: 20px;
  padding: 2px 10px 2px 10px;
  text-decoration: none;
  z-index: 2;
  border: solid #D6EBFF 1px;
  background: none;
  float: right;
}

.dev-image {
    width: 100%;
    text-align: center;

}

.dev-image img {
    object-fit: cover;
    width: 40vmin;
    height: 30vmin;
}

.dev-description {
    font-size: 1em;

}

.dev-collaborator {
    font-size: 0.8em;
}



.dev-close:hover {
  border: dotted black 1px;
  text-decoration: none;
  color: black;
}

/* align this with main.css mobile style */
@media only screen and (max-device-width : 1024px) {
    .dev-item {
        width: 90vw;
        padding: 0.5em;
        margin: 10vh auto 0;
        box-shadow: 1px 1px 3px rgba(0,0,0,0.35);
        background-color: #D6EBFF;
        border-radius: 7px 7px 7px 7px;
        -moz-border-radius: 7px 7px 7px 7px;
        -webkit-border-radius: 7px 7px 7px 7px;
    }

    .dev-header {
        margin-bottom: 10px;
    }

    .dev-image img {
        width: 75vmin;
        height: auto;
    }


}