

img.circle {
    max-width: 30%;
}

/* this is to make the STL 3D view responsive, but in case you added other iframes to the site, make sure to override these values if needed */
iframe {
    width: 100%;
    height: 300px;
}

header.header {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #4A4B50;
    z-index:999;
}

/* I added it to compensate for the padding when making the header sticky */
.content {
    padding-top: 56px;
}

.post-title {
    text-transform: uppercase;
}

.post-summary {
    font-size: 12px;
    text-transform: none;
}

.read-more {
    color: white;
    font-size: 12px;
    background-color: #252627;
    border-radius: 5px;
    float: right;
    padding: 5px 10px;
    border: 1px solid black;
}

.read-more:hover {
    color: #252627;
    background-color: #DEDEDE;
}