body {
    /* Next is generated using https://cssgradient.io/ */
    background: rgb(46,207,211);
    background: -moz-linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    background: linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2ecfd3",endColorstr="#00d4ff",GradientType=1);
}

#main {
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    font-size: 12px;
}

.title {
    background: -webkit-linear-gradient(60deg, #E21143, #FFB03A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px;
}

.card {
    -webkit-box-shadow: 0px 0px 13px -7px #000000; 
    box-shadow: 0px 0px 13px -7px #000000;
}

.card-content {
    cursor: pointer;
    background: #edfcff;
}

.card:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    z-index: 10;
}

#verse-link {
    font-size: 16px;
}

#verse-text {
    color: black;
    font-family: Optima, sans-serif;
    margin: 5px;
}

.message-header {
    background: rgb(46,207,211);
    background: -moz-linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    background: linear-gradient(90deg, rgba(46,207,211,1) 0%, rgba(0,212,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2ecfd3",endColorstr="#00d4ff",GradientType=1);

}

.manners-category {
    font-size: 20px;
}

.manner-tag {
    color: red;
    border: 1px solid #800000;
    padding: 2px;
    margin-top: 10px;
    margin-right: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    float: right;
}

#verse-link {
    color: black;
}

.emph {
    font-weight: bold;
}

#foot {
    padding: 1rem 0.5rem 1rem !important;
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #scrollToTop:hover {
    background-color: #555;
  }