html {
    margin:0%;
    padding: 0%;
}

body {
    margin:0;

    background-color: #161616;
}

.header {
    height: 65px;
    width: 100%;
    font-size: 30;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #0c0c0c;
    position: relative;
    display: flex;
    justify-content: right;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    padding: 28px 0;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: rgb(250, 250, 250);;
    padding: 5px 0;
}

.album {
    width: 100%;
}

.album-art a:hover {
    transform: scale(1.01);
}

.divider {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    min-width: 900px;
    height: 2px;
    background-color: #252525;
}

.stream-divider {
    padding-top: 13px;
}

.album-art a {
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50vh;
    max-height: 50vh;

    transition: .2s;
}

.album-art img {
    width: 100%;
}

.stream-links {
    align-items: center;
    list-style: none;
    position: relative;
}

.single-stream-link {
    width: 95vw;
    max-width: 1000px;
    height: 90px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.single-stream-link a:hover {
    transform: scale(1.01);
}

.single-stream-link a {
    display: flex;
    background-color: rgb(250, 250, 250);
    border-radius: 10px;
    width: 100%;
    transition: .2s;
    height: 100%;
    text-decoration: none;
}

.single-stream-link img {
    display: flex;
    padding-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    width: 70px;
}

.single-stream-link text {
    padding-top: 22px;
    width: 100%;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 35;
    color: #1b1b1b
}

.link-star-right {
    padding-top: 16px;
    padding-right: 20px;
    width: 50px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40;
    color: #292929
}

.link-spacer-right {
    width: 70px;
}

.album-info {
    width: 100%;
    color: rgb(250, 250, 250);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.album-title {
    font-size: 60;

}

.album-artist {
    font-size: 30;
}

.album-genre {
    padding-top:5px;
    font-size: 15;
}

.story {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    min-width: 900px;
    color: rgb(250, 250, 250);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.story h1 {
    margin-top: -35;
    font-size: 80;
}
.story h2 {
    margin-top: -35;
    font-size: 50;
}
