*, *::before, *::after {
    box-sizing: border-box;
}

:root{
    --inset: 16px;
}


a,
a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: underline;
}

a:active {
    color: inherit;
}

body {
    padding: 40px 40px 40px 40px;
    background-image: url("/images/floor.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    background-color: black;
    color: white;
    font-family: Verdana, serif;
}

header{
    text-align: center;
    padding: 1rem;
}

.navigation {
    background-color: darkred;
    color: white;
    padding: 10px 10px 10px 10px;
    margin: 0 1rem;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.textAlign {
    text-align: center;
}

.streamingList{
    list-style: none;
    padding: 0;
    margin: 12px auto 20px;
    width: fit-content;
}

.streamingList li{
    display: grid;
    grid-template-columns: 1em auto;
    column-gap: 0.4em;
}

.streamingList li::before{
    content: "•";
    justify-self: end;
}

.audioControl{
    display: block;
    margin: 0 auto 20px;
}

.albumCover {
    display: block;
    margin: 0 auto 20px;
}

.bounce {
    display: block;
    margin: 0 auto;
}

html, body { height: 100%; margin: 0; }

.siteTable{
    width: 90vw;
    height: 90vh;
    table-layout: fixed;
    border-collapse: separate;
    --gap: 10px;
    border-spacing: var(--gap);
    --edge: clamp(100.8px, min(30.24vw, 30.24vh), 352.8px);
    --inset: 4px;
    --borderW: 2px;
    --borderC: white;
}

.siteTH{
    position: relative;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;

    background: transparent;
    border: 0;
}

.siteTH::after{
    content: "";
    position: absolute;
    inset: var(--inset);
    border: var(--borderW) solid var(--borderC);
    pointer-events: none;
}

.siteTable col.c1,
.siteTable col.c4 { width: var(--edge); }

.siteTable col.c2,
.siteTable col.c3{
    width: calc((90vw - 2 * var(--edge) - 5 * var(--gap)) / 2);
}

.siteTable tr:first-child { height: var(--edge); }
.siteTable tr:not(:first-child) {
    height: calc((90vh - var(--edge) - 9 * var(--gap)) / 7);
}

.siteTable tr:first-child > th{
    height: var(--edge);
}

.cellImg{
    display: block;
    width: calc(100% - 2 * var(--inset));
    height: calc(100% - 2 * var(--inset));
    margin: var(--inset);
    object-fit: cover;
    object-position: center;
    box-sizing: border-box;
}

.cellLogo{
    display: block;
    width: calc(100% - 2 * var(--inset));
    height: calc(100% - 2 * var(--inset));
    margin: var(--inset);
    object-fit: contain;
    object-position: center;
    box-sizing: border-box;
}


.cell4Wrap{
    width: calc(100% - 2 * (var(--inset) + var(--borderW)));
    height: calc(100% - 2 * (var(--inset) + var(--borderW)));
    margin: calc(var(--inset) + var(--borderW));
}

.linkStack{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 42px;
    gap: 18px;
}

.linkBtn{
    width: min(100%, 260px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    text-decoration: none;
    color: white;
    background: transparent;
    box-sizing: border-box;
}

.linkBtn:hover{
    background: rgba(255, 255, 255, 0.12);
}

.cellThreeContent{
    vertical-align: top;
}

.cellThreeContent{
    width: calc(100% - 2 * (var(--inset) + var(--borderW)));
    height: calc(100% - 2 * (var(--inset) + var(--borderW)));
    margin: calc(var(--inset) + var(--borderW));

    overflow: auto;
    padding: 10px;
    box-sizing: border-box;

    text-align: left;
}

.cellThreeContent p,
.cellThreeContent p,
.cellThreeContent h1,
.cellThreeContent h2,
.cellThreeContent h3,
.cellThreeContent h4,
.cellThreeContent h5,
.cellThreeContent h6 {
    margin: 0;
    overflow-wrap: anywhere;
    font-family: manrope, serif;
}

.cellThreeContent p {
    font-size: 24px;
    font-family: manrope, serif;
}