html {
    background-color: #101010;
    color: white;
    font-family: 'Franklin Gothic Medium', Arial, sans-serif;
}
a {
    text-decoration: none;
    color: #10c0f0;
}
a:visited {
    color: #bc94ff;
}
a:hover {
    text-decoration: underline;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title {
    font-size: 7em;
    font-style: italic;
    font-weight: bolder;
}
.status-code {
    font-size: 7em;
    font-style: italic;
    font-weight: bolder;
    margin-bottom: 0em;
}
.status {
    font-size: 5em;
    font-style: italic;
    font-weight: bolder;
    opacity: 0.5;
    margin-top: 0em;
}
.album {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-gap: 4px;
}
.album-cover {
    width: 15em;
    image-rendering: crisp-edges;
}
.album>h1 {
    grid-column-start: span 2;
}
.track-name {
    display: flex;
    align-items: center;
}
.track-name>p {
    margin: 0;
}
.track-name>p>span {
    font-style: italic;
}
.album-description {
    display: flex;
    align-items: end;
    font-style: italic;
    padding: 8px;
}

button {
    background: inherit;
    color: inherit;
    border: 2px solid white;
    font-size: inherit;
}