body { background: url('bg.jpg') top right repeat;
    font-family: verdana;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 3px black;
    overflow: auto;
    overflow-x: hidden;}

#sel { font-family: 'Fira Sans', monospace;
    color: white;
    text-shadow: 1px 1px 3px black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    font-size: 3rem;
    margin-top: 3%;
    margin-left: 5%;
    width: 12%;
    text-align: center; }

#alblist { background: rgb(000, 000, 000, 0.4);
        border: 1px white solid;
        box-shadow: 1px 1px 3px white;
        margin-top: 0.5rem;
        height: auto;
        width: 13%;
        flex: 0 0 13%; }

.nav { display: block;
    width: 95%;
    background: transparent;
    border-bottom: 1px white dashed;
    padding: 3px 3px 3px 3px;
    text-align: center;
    margin-bottom: 1px;
    font-family: 'Fira Sans', monospace;
    color: white;
    text-shadow: 1px 1px 3px black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 2px;
    font-size: 0.6rem; }

#container { display: flex;
            align-items: flex-start;
            flex-direction: row;
            margin-left: 5%;}

#box { position: relative;
    display: flex;
    flex-direction: column;
    width: 75%;
    max-width: 550px;
    margin-left: 4%;
    margin-top: 0.5rem;
    flex: 1;
    height: auto;
    padding: 10px; }

.alb { position: relative;
    max-width: 550px;
    overflow: hidden;
    box-shadow: 5px 5px 3px black;
    z-index: 999;}


.alb img { width: 100%;
        height: auto;
        display: block; }

.overlay { position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0, 0.0);
        transition: ease-in-out 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: -999; }

.alb:hover .overlay { background: rgba(0,0,0, 0.6);
                    z-index: 999;
                    transition: ease-in-out 0.3s; }

.overlay-text { color: white;
                padding: 10px;
                text-align: center; }

.cd { position: absolute;
    top: -200px;
    left: 600px;
    width: 100%;
    height: 100%;
    background: url('cd.png') center no-repeat;
    background-size: contain;
    transition: transform 0.5s ease;
    transform: translateX(-80%) rotate(0deg);
    z-index: -999; }

.alb:hover ~ .cd { transform: translateX(0) rotate(360deg);
                z-index: 1; }

#boxbottom { background: rgb(000, 000, 000, 0.4);
        border: 1px white solid;
        box-shadow: 1px 1px 3px white;
        width: 700px;
        margin-top: 20px;
        height: auto;
        margin-left: 20%;
        position: relative;
        padding: 10px; }


/* resizing */

@media (max-width: 1024px) { 
    .alb { max-width: 300px; }
    .cd { left: 240px;
        transform: translateX(-50%); }
    #sel { font-size: 1.5rem;
        letter-spacing: 0.3rem; } }
    
@media (max-width: 600px) {
    .cd { display: none; }
    #sel { font-size: 1rem;
        letter-spacing: 0.1rem; } }


    