@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

root {
    font-family: 'Orbitron', sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background-color: rgb(25, 20, 20);
    color: white;
    letter-spacing: 1px;
}

.Aligner {
    display: flex;
    align-items: center;
    min-height: 24em;
    justify-content: center;
}

.Aligner-item + .Aligner-item {
    margin-top: 1.5rem;
}

.Aligner-item {
    flex: 1;
}

.Aligner-item--top {
    align-self: flex-start;
}

.Aligner-item--bottom {
    align-self: flex-end;
}

.Aligner-item--fixed {
    flex: none;
    max-width: 50%;
}

.text-area {
    padding: 1.0rem;
    border: 2px solid white;
    border-radius: 2px;
    width: 25%;
    background-color: rgb(38, 31, 31);
    text-align: center;
}

.current-song {
    padding: 1.0rem;
    border: 2px solid white;
    border-radius: 2px;
    width: 25%;
}

.current-song .media-body {
    margin-top: 5px;
}

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

.text-title h1 {
    margin-bottom: 0;
    font-size: 4.5rem;
}

.text-title small {
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-spotify {
    background: rgb(30, 215, 96);
    font-weight: bold;
    border-radius: 15px;
}

.flip {
    animation-name: flip;
    animation-direction: normal;
    animation-duration: 500ms;
    animation-delay: 0s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-play-state: running;
    animation-timing-function: linear;
}

@keyframes flip {
    0% {
        transform: rotate3d(0, 0, 0, 0);
    }
    40% {
        transform: rotate3d(1, 0, 0, 0.25turn);
    }
    60% {
        transform: rotate3d(1, 0, 0, 0.25turn);
    }
    100% {
        transform: rotate3d(0, 0, 0, 0);
    }
}