.tc{
  text-align: center;
  border: solid;
  border-color:antiquewhite;
  border-width: 0.05rem;
  padding: 1.5rem;
  width: 50vw;
}


.light-mode #artists,
.light-mode #music{
    border-color: darkblue;
}

.tc a,
#now-playing{
    color: rgb(130, 155, 140);
    padding-bottom: 2rem;
    vertical-align: middle;
    font-size: 1.5rem;
}

.heading{
    color: rgb(120, 155, 140);
    font-size: 3rem;
}

.light-mode .heading{
    color: rgb(80, 50, 120);
}

.light-mode #music a,
.light-mode #now-playing,
.light-mode #artists a{
    color: rgb(80, 60, 130)
}

.entry{
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.thumbnail {
    width: 2vw;
}

#now-playing{
    font-size: 2.2rem;
}

.flex{
    display: flex;
    align-self: center;
    justify-content: center;
    margin: 1rem;
}

.seperator-line{
    display: none;    
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #2ee4ee, transparent);
    margin: 2rem 0;
}

.light-mode .seperator-line{
    background: linear-gradient(to right, transparent, #747474, transparent);
}

@media (max-width: 600px) {
    .tc{
        width: 35vw;
    }
    .tc a{
        font-size: 1.5rem;
    }
    .heading{
        font-size: 2rem;
    }
    .entry{
        flex-direction: column;
    }
    .thumbnail{
        width:40vw;
    }
    .seperator-line{
        display: block;
    }
}