html, body {
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    background: white;
    font-family: 'Montserrat', sans-serif;
}

.container {
    margin-top: 15px;
}

a {
    color: black;
}

button:focus {
    outline: none;
}

#logo{
    background-image: url("images/logo_cropped.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    height: 400px;
    max-width: 400px;
    cursor: pointer;
    margin-bottom: 2%;
    background-position: center;
}

.links {
    margin-bottom: 5%;

}

.links > span {
    padding: 30px;
}

.track-img {
    max-height: 400px;
    max-width: 400px;
    width: 100%;
    margin-bottom: 5px;
}

.track-artists {
    float: right;

}

.track-wrapper {
    max-width: 400px;
    margin-bottom: 2em;
}

.player {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin-top: 1em;
    padding: 0 12px;
    width: 100%;
    align-items: center;
    border: 1px solid #DDE2E6;
    border-radius: 4px;
    background: #fff;
}

.player > * {
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
}

.loading-gif {
    background-image: url(/images/loading_gif.gif);
    width: 37px;
    height: 47px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.player > .track-progress {
    padding: 5px;
    width: 100%;
}

.track-search {
    position: relative;
    height: 3px;
    width: 100%;
    background: #80808054;
    border-radius: 3px;
}

.track-ball {
    border: 2px solid #BEC8D2;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -6px;
    top: -6px;
    background-color: #fff;
}

.time-remain, .time-passed {
    min-width: 57px;
}

.control-play {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 48px; */
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease-in-out;
    background: rgba(91, 130, 255, 0);
    border: none;
    min-width: 24px;
    /* border-radius: 4px;
    padding: 3px 12px;
    border: none;
    background: blanchedalmond;
    box-shadow: 1px 1px #eee;  */
}

.control-play:not(.playing) > span {
    content: '';
    justify-content: center;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-right: none;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #212529;
}

.control-play.playing > span {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 12px;
    height: 14px;
}

.control-play.playing > span::before, .control-play.playing > span::after {
    content: '';
    width: 4px;
    height: 14px;
    background-color: #212529;
}

.control-play.playing{
    outline: none;
}

#about-wrapper {
    margin-bottom: 20px;
    border-radius: 5px;
}

#about-wrapper ul {
    padding-inline-start: 0;
}

#about-wrapper li {
    list-style-position: inside;
}

/* Backend */

#backend-wrapper {
    display: none;
}

@media screen and (max-width: 768px){
    .links > span {
        padding: 10px;
    }

     #logo{
        height:  346px;
    }

}

@media screen and (max-width: 992px) and (min-width: 768px){
    .track-artists {
        float: none;
        display: block;
    }

    .track-wrapper {
        margin: 0 auto;
    }

}

@media screen and (max-width: 992px) {
    .track-wrapper {
        margin:  auto;
	margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .track-info {
        min-height: 49px;
    }
}
