*,
p {
    /*font-family: Courier;*/
    font-family: monospace;
}

a {
    text-decoration: underline;
}

.page-title {
    text-align: center;
}

.page-title h1 {
    font-size: 3.5rem;
    font-family: handFont;
}

.page-title h3 {
    font-size: 2rem;
    font-family: handFont;
}


.container {
    display: flex;
}

.left-side {
    padding: 2%;
    width: 33%;
}

.right-side {
    padding: 2%;
    width: 66%;
}

.shelf {
    height: 30px;
    width: 90%;
    /*background-color: rgb(104, 67, 45);*/
    /*background-image: linear-gradient(rgb(49, 32, 22), rgb(104, 67, 45));*/
    background-image: linear-gradient(rgb(104, 67, 45), rgb(35, 22, 15));
    border-radius: 6px;
}

.media-scroll {
    display: flex;
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 1px;
}

.book {
    margin-top: 0px;
    border-radius: 2px;
    width: 50px;
    height: 300px;
    border: 0px solid black;
    background-color: gray;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.097), rgba(0, 0, 0, 0.15));
    color: white;
    transition: transform 0.6s ease;
}

.title {
    padding: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
}

.author {
    font-size: 10px;
    writing-mode: initial;
    text-orientation: initial;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.publish-logo {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
}

.line {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 234, 0, 0.147);
    margin: 2px 0 2px 0;
}

.item-content {
    margin: 2px 2px 2px 2px;
    width: auto;
    height: 296px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.vertical-lines {
    margin: 0 1px 0 1px;
    display: flex;
    justify-content: space-between;
}

.vertical-lines span {
    border-right: solid 1px;
    border-color: rgba(255, 255, 255, 0.2);
    height: 10px;
}

.line-container,
.bottom-book,
.top-book {
    width: 100%;
}

.book:hover,
.media-item:hover {
    /*color: rgb(182, 0, 76);*/
    /*border: 5px groove rgb(255, 0, 106);*/
    /*border-radius: 2px;
    margin-top: 0px;*/
    transform: scale(1.1);
    box-shadow: 12px 10px 11px -3px rgba(0, 0, 0, 0.30),
        -12px 10px 11px -3px rgba(0, 0, 0, 0.30);
    z-index: 1;
    cursor: pointer;
}

.media-item {
    width: 30px;
    height: 250px;
    margin-top: 50px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.6s ease;
}

.dvd-border-top,
.dvd-border-bottom {
    width: 100%;
    height: 6px;
    background-color: black;
}

.dvd-border-top {
    border-radius: 3px 3px 0 0;
}

.dvd-border-bottom {
    border-radius: 0 0 3px 3px;
}

.logo {
    font-weight: bolder;
    font-size: 12px;
    font-family: sans-serif;
}

.hidden {
    display: none;
}

dialog {
    margin: 0 0 0 auto;
    height: 100%;
    width: clamp(500px, 70%, 2000px);
    padding: 1em;
    border: none;
    background-color: rgba(212, 212, 212, 0.969);
}

dialog img {
    width: 100%;
}

dialog h1 {
    font-size: 2.25rem;
}

dialog h3 {
    font-size: 16px;
    font-weight: lighter;
}


dialog p {
    font-size: 1rem;
    text-indent: 1em;
}


dialog h2 {
    font-size: 1.5rem;
}

.modal-title {
    text-align: center;
}

.modalcontent-container {
    height: 100%;
    width: 100%;
    display: flex;
}

.close-modal {
    background-color: #04AA6D;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    float: right;
}

.close-modal:hover {
    cursor: pointer;
    background-color: #037d50;
}

.left-modal {
    width: clamp(100px, 25%, 300px);
    padding: 5px;
}

.right-modal {
    width: 70%;
    padding-left: 15px;
}

strong {
    font-weight: 700;
}