.trizvezdy {
    display: block;
    text-indent: 0;
    text-align: center;
    margin: 1rem auto 0.5rem auto;
}
.info {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
}
.info span {
    line-height: 1;
    text-indent: 0;
    height: auto;
    text-align: center;
    border: solid 2px var(--textGold);
    border-width: thin;
    color: var(--textGold);
    border-radius: 8px;
    padding: 0.1rem 1rem 0.2rem 1rem;
    margin: 0 0.3rem;
}

.toc {
    margin: 1rem auto ;
    text-align: center;
}
.toc ul {
    display: inline-block;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none; /* Remove default bullets */
}
.toc ul li::before {
    content: "\2022";  /*  \2022 is the CSS Code/unicode for a bullet */
    color: var(--logoGold);
    font-weight: bolder;
    display: inline-block; /* add space between the bullet and the text */
    width: 1em; /* Also needed for space */
    margin-left: -1em; /* Also needed for space */
  }
.toc a {
    text-decoration: none;
    font-size: 1.2rem;
    /* font-weight: bold; */
    color: var(--textGold);
    font-family: 'OldStandardTT', 'Garamond', "Times New Roman", Times, serif;
}

/*  ~~~~~ FILM ~~~~~  */
.videolink {
    text-decoration: none;
}
.film {
    /* position: relative; */
    margin: 0;
    padding: 0;
    line-height: 1;
    width: 100%;
}
.film img {
    margin: 0 auto;
    width: 100%;
}
.film span {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: var(--textGold);
    background-color: #000;
}

/* ======  WHERE TO READ ?  ======  */
.read-card {
    display: flex;
    line-height: 1.2;
    flex-direction: row;
    align-items: center;
    text-indent: 0;
    margin: 0.1rem 0 0 0;
    padding: 0;
}
.read-container {
    font-size: 1.125rem;
    margin: 0;
    border-top: solid 1px var(--textGold);
    cursor: pointer;
}
.end-container { border-bottom: solid 1px var(--textGold); }
.read-card p {
    font-family: 'OldStandardTT', 'Garamond', "Times New Roman", Times, serif;
    padding: 0 0.2rem 0 0;
    text-indent: 0;
}
.read-container a {
    text-decoration: none;
}
.read-icon {
    width: 5.5rem;
    margin-left: 0.5rem;
    padding: 0;
}

.vinilimg1spin {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation-duration: 2s;
    animation-name: vinilrot;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes vinilrot {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========  GALLERY  ======== */
.gallery {
    display: flex;
    flex-direction: row;  
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-item {
    width: 5.5rem;
    margin: 0.3rem;
}
.gallery-item img {
    width: 5.5rem;
    margin: 0.3rem;
}

/* ---------- M O D A L ---------- */
.modal {
    display: none;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.modal-about {
    position: absolute;
    text-align: center;
    background-color: #000;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 51;
}
.show-full-screen {
    display: flex;
    position: fixed;
    z-index: 50;
    width: 100vw;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* top: 0; */
    /* left: 0; */
    background-color: #000000;
    /* transition: 0.5s; */
}

/* ---------- P C   &    T A B L E T S ---------- */
/* Unless you have a legitimate reason to restrict the style sheets based on the resolution */
/* and not the size of the viewport, then just use min-width/max-width */
/*  and avoid min-device-width/max-device-width */
@media only screen and (min-width: 480px) {
    .info span {
        padding: 0.1rem 1rem 0.2rem 1rem;
        margin: 0 1rem;
    }
    .gallery-item {
        width: 7rem;
        margin: 0.3rem;
    }
    .gallery-item img {
        width: 7rem;
        margin: 0.3rem;
    }

    .read-card {
        margin: 0.1rem 0 0 0;
    }
    .read-container {
        margin: 0 3rem;
    }
    .read-icon {
        width: 4rem;
        margin: 0 1rem;
    }
}