.btt-button {
    scale: 150%;
    position: fixed;
    bottom: 3vmin;
    right: 3vmin;
    transition: scale .5s;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.poster {
    width: 100%;
    align-items: center;
    display: flex;
}

.poster > * {
    display: block;
    margin: auto;
    position: relative;
}

.carousel-container {
    margin: 1ch 1ch 1ch 1ch;
    background-color: var(--bs-tertiary-bg);
}

.carousel-container h2 {
    padding: 0.5ch 0 0.5ch 1ch;
    background-color: var(--bs-secondary-bg);
}

.carousel-buttons {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(0%,-50%); /* centres the div :3 */
}

.carousel-button {
    scale: 150%;
}

.carousel-button-left {
    float: left;
    rotate: -90deg;
}

.carousel-button-right {
    float: right;
    rotate: 90deg;
}

.shrink-animate {
    scale: 0;
}

.show-card-border {
    cursor: pointer;
}

.show-card-bg {
    height: auto;
    background-color: var(--bs-tertiary-bg);
}

.show-card {
    height: auto;
    display: flex;
    align-items: center;
}

.show-card-title {
    align-items: start;
    background-color: var(--bs-secondary-bg);
    padding: 0 .5ch 0.1ch .5ch;
}

.show-card-stars {
    display: flex;
    justify-content: center;
    min-width: 100%;
}

.show-card-img {
    vertical-align: middle;
    width: 12vw;
}

.show-card-text p { 
    text-overflow: ellipsis;
    word-wrap: anywhere;
    margin: 0ch 2ch;
}

.subject-body-cast {
    display: flex;
}

.poster-sm img {
    scale: 80%;
}

.poster-caption {
    opacity: 0;
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -0%);
    transition: all 0.5s;
    width: 90%;
    pointer-events: none;
    text-shadow: 1px 1px black;
}

.poster-caption > * {
    pointer-events: none;
}

.poster-image:hover + .poster-caption {
    opacity: 100%;
}

.poster-image {
    transition: all 0.25s;
}

.poster-image:hover {
    filter: blur(5px);
    opacity: 75%;
    scale: 95%;
}

.carousel-control-prev {
    width: 0;
}

.carousel-control-next {
    width: 0;
}

.search-large {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(150%);
    width: 50%;
}