.content{
    overflow-x: auto;
    max-height: fit-content;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    /* background: radial-gradient(rgb(81, 243, 255), silver); */
    background-image: url('/images?name=blog-home-white-bg.jpg');
    background-size: 100% 100%;
    background-attachment: fixed;
    width: 100%;
}

#content-body{
    font-family: 'Courier New'; 
    font-size: 16px;
    text-shadow: 0px 0px 0.5px black;
    margin-left: 2%;
    margin-right: 2%;
    line-height: 1.5em;
    display: flex;
    flex-direction: column;
    height: 90%;
    padding-bottom: 10px;
}

#content-title{
    font-family: 'Courier';
    padding-top: 1%;
    display: flex;
    justify-content: center;
    height: 10%;
}

.card{
    border-radius: 1px;
    /* background-color: rgb(215, 195, 165); */
    /* background: linear-gradient(rgb(126, 124, 13), rgb(106, 62, 8)); */
    background: linear-gradient(rgb(184, 184, 184), rgb(109, 109, 109));
    display: block;
    position: relative;
    max-height: 31%;
    min-height: 200px;
    min-width: 200px;
    width: 32%;
    margin-right: 0.66%;
    margin-left: 0.66%;
    margin-bottom: 2%;
    box-shadow: 5px 7px 5px black;
    border: 1px solid black;
    /* transition: 0.4s; */
    z-index: 13;
    user-select: none;
}

.card:hover{
    transform: scale(1.15, 1.15);
    cursor: pointer;
    z-index: 14;
    color: white;
    box-shadow: none;
    background: rgb(117, 117, 117);
}

.card-title{
    height: 30%;
    width: 90%;
    left: 5%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
}

.card-divide{
    height: 2%;
    width: 90%;
    top: 30%;
    left: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.card-content{
    height: 68%;
    width: 90%;
    left: 5%;
    top: 32%;
    margin-top: 3%;
    position: absolute;
    overflow-y: hidden;
}

.cards-row{
    display: flex;
    flex-direction: row;
    width: 100%;
    /* justify-content: center; */
    align-items: center;
}