#radio{
    position: relative;
    width: 80%;
    aspect-ratio: 39/17;
    margin: auto;
    margin-bottom: 2em;
    container: radio / size;
    background-image: url(/images/misc/dogradio.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--accent);
    text-shadow: 0px 0px 2px var(--accent);
    font-family: "LED";
    font-size: 1.5cqw;
}
#lastHeard{
    display: flex;
    position: absolute;
    width: 33%;
    height: 5%;
    top: 46%;
    left: 8%;
    mix-blend-mode: color-dodge;
}
#lastHeard span{
    overflow: none;
    flex-shrink: 0;
    margin-right: 0.5em;
}
#radioOther{
    width: 34%;
    height: 74%;
    position: absolute;
    top: 15%;
    right: 20%;
    padding: 1em;
    text-align: justify;
    --radioText:  rgb(109, 177, 255);
    color: var(--radioText);
    text-shadow: 0px 0px 2px var(--radioText);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#radioOther table{
    width: 100%;
}
#radioOther span{
    color: white;
}
#radioOther a{
    display: block;
    color: rgb(228, 228, 228);
}
#radioOther a:hover{
    background-color: rgb(228, 228, 228);
    color: #121213;
}
#snuppoGif{
    position: absolute;
    width: 25cqw;
    bottom: -18%;
    right: 0;
    z-index: 1;
}
#biancarosa{
    position: absolute;
    z-index: 1;
    top: 55%;
    left: 32%;
    width: 10%;
    height: 5%;
}

@keyframes cdSpin {
    0% {transform: perspective(none) rotateX(57deg) rotateZ(0deg);}
    50% {transform: perspective(none) rotateX(57deg) rotateZ(180deg);}
    100% {transform: perspective(none) rotateX(57deg) rotateZ(360deg);}
}
#cdWrapper{
    position: absolute;
    bottom: -14.5%;
    left: 7.9%;
    width: 33%;
    aspect-ratio: 1;
    mask:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="100,100 0,100 0,36.5 100,36.5" fill="black"/></svg>') 0/100% 100%;    
    opacity: 0.8;
}
#cd{
    width: 100%;
    height: 100%;
    mask:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="50" fill="black"/></svg>') 0/100% 100%,
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="19" fill="black"/></svg>') 0/100% 100%;
    mask-composite: exclude;
    background-image: url();
    background-size: cover;
    transform: perspective(none) rotateX(57deg);
    animation: 3s linear infinite normal cdSpin;
}

#aboutBanner{
    position: relative;
    display: flex;
    color: whitesmoke;
    width: 100%;
    text-align: justify;
    --height: 100px;
    height: var(--height);
    margin-bottom: 2em;
}
#fanlistings{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-flow: dense;
}
#fanlistings img{
    display: block;
    margin: 0;
}
#musicLyfSmall{grid-column: span 2;}
#about{
    padding: 0.5em 3em 0.5em 2em;
}

#records{
    position: relative;
    border: 5px solid black;
    width: 90%;
    margin: auto;
    margin-bottom: 1em;
    display: grid;
    flex-shrink: 1;
    overflow: auto;
    overflow-x: hidden;
}
#records a{position: relative;}
#records span{
    display: block;
    height: 100%;
    width: 100%;
    color: whitesmoke;
    background-color: black;
    position: absolute;
    top: 0;
    font-size: x-small;
    text-align: center;
    padding: 0.5em;
    opacity: 0;
}
#records span:hover{
    opacity: 0.7;
}
.record{
    max-width: 100%;
    display: block;
    margin: 0;
}

@media only screen and (min-width: 0px) {
    #records{grid-template-columns: repeat(6, auto);}
}
@media only screen and (max-width: 450px) {
    #about{font-size: 0.9em;}
    #aboutBanner{margin-top: 20px;}
}
@media only screen and (max-width: 600px) {
    #aboutBanner{margin-top: 30px;}
}
@media only screen and (min-width: 850px) {
    #records{grid-template-columns: repeat(8, auto);}
}
@media only screen and (min-width: 1050px) {
    #musicLyfSmall{
        position: absolute;
        visibility:collapse
    }
}
@media only screen and (max-width: 1050px) {
    #aboutBanner{--height:150px;}
    #about{padding-top: 1.5em;}
    #musicLyfLarge{display: none;}
}
@media only screen and (min-width: 1300px) {
    #records{grid-template-columns: repeat(10, 10%);}
}