html, body, body > div{
    min-height: 100%;
}
body{
    height: 100%;
}
body {
    background-color: hotpink;
}

@keyframes fadeIn {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 0.5;
    }
}

.background-div {
    background-image: url(pink-hearts-ezgif.com-speed.gif);
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 0.1;
    animation: fadeIn 5s infinite alternate;
}

.main-div {
    z-index: 1;
    position: relative;
}

.card {
    margin-bottom: 20px;
    width: 24rem;
}

.consol,
.consol input {
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    color: lime;
    text-align: left;
}

.consol input,
.consol input:focus {
    border-width: 0px;
    outline: none;
}

.consol textarea {
    width: 100%;
    min-height: 150px;
}

.footer {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.song-text {
    text-align: left;
    font-style: italic;
    font-size: 0.9em;
    /* white-space: pre; */
    max-height: 150px;
    overflow-y: scroll;
}

@media (min-width: 992px) {
    .podcast {
        max-height: 150px;
        overflow-y: scroll;
    }
}

.filter-options {
    text-align: center;
    padding-bottom: 15px;
}

.display-none {
    display: none !important;
}

.btn-outline-primary {
    background-color: white;
    /* background-color:rgba(255, 255, 255, 0.75); */
}

.date {
    font-style: italic;
}

.card {
    position: relative;
}

.card .suit-icon {
    position: absolute;
    font-size: 1.7em;
    line-height: 1.1em;
    padding: 9px;
}

.suit-icon-rt {
    right: 0px;
    top: 0px;
    background-color: white;
}

.card .suit-icon-lb {
    left: 0px;
    bottom: 0px;
    transform: scale(-1, -1);
}

.card .country-flag {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 10px;
}

.card .country-flag img {
    width: 80px;
}

.front-page-intro {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 20px;
    margin-bottom: 10px;
}

.card {
    /* zoom: 1;
    animation-name: scale-in;
    animation-duration: 1.5s;
    animation-delay: 1s; */
}

@keyframes scale-in {
  0% {
    zoom: 1;
    transform: scale(1);
  }
  50% {
    zoom: 0;
    transform: scale(0) rotate(2turn);
  }
  100% {
    zoom: 1;
    transform: scale(1);
  }
}

@include media-breakpoint-up(sm) {

}
@media (max-width: 576px) {
    .btn-group-vertical>.btn, .btn-group>.btn{
        padding: 6px 6px;
        font-size: .8em;
    }
}
.bi-suit-heart-fill, .bi-suit-diamond-fill{
    color: red;
}