.jm-button {
    background-color: #ccc;
    border: none;
    color: #333;
    padding: 0.5rem 0.75rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    border-radius: 8px;
}
.jm-button.tiny{
    margin:0;
    padding:0.5rem;
    font-size: 0.7rem;
}

.jm-button:hover {
    background-color: #04AA6D;
    color: white;
}

#jmModal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#jmModal-window {
    background-color: #f0f0f1;
    margin: 10% auto;
    padding: 0.5rem;
    border: 1px solid #888;
    width: 80%;
    z-index: 100;
}

#jmModal-header {
    padding-bottom:0;
}

#jmModal-header .title {
    font-size: 1.5rem;
}

#jmModal-content {
    width: 100%;
    max-height: 65vh;
    overflow-y: auto;
}
#jmModal-controls {
    padding: 5px 0;
}
#jmModal-controls .button{
    float:right;
}

#jmModal .closer {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
}

#jmModal .closer:hover,
.closer:focus {
    color: black;
}

.is-layout-constrained #jmModal {
    max-width: 100vw !important;
    margin: 0 auto;
}
.site-main .entry-content.home{
    margin:0;
    padding:0;
}