/* Stijlen voor RadioGaGA */
html {
    height: 100%;
    width: 100%;
    background-color: lightgray;
    overflow: auto;
}
body {
    widows: 96%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    border: 1px solid;
    overflow: inherit;
    background-color: #fff;
    text-align: center;
    font-family: Verdana, Arial, sans-serif;
    color: #000;
    font-size: 16px;
    font-style: normal;
}
h3 {
    margin: 0;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
}
nav {
    width: 100%;
}
nav ul {
    text-align: center;
    margin: 0 0 0 0;
    padding-left: 0;
}
nav ul li {
    width: 25%;
    background: linear-gradient(#9FB3B5, #E3E9EA, #7C9799);
    float: left;
    list-style-type: none;
}
a {
    text-decoration: none;
}
nav ul li a {
    font-size: 1.7rem;
    opacity: 0.5;
    filter: alpha(opacity=50); 
}
nav ul li a:hover, nav ul li a:focus {
    color: firebrick;
    background-color: yellow;
    letter-spacing: 5px;
}

#logo{
    margin-top: 15px;
    padding-top: 10%;
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    
}

#disc{
    bottom: 90px;
    position: relative;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
    width: 400px;
    height: 400px;
    margin-top: 10%;
    
    background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, grey 0%, black 100%, black 95);
    background-image: -webkit-radial-gradient(45px 45px, circle cover, grey, black);
    background-image: radial-gradient(45px 45px 45deg, circle cover, grey 0%, black 100%, black 95%);
    
    -webkit-animation-name: revolutie;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    
    animation-name: revolutie;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#center {
    width: 105px;
    height: 105px;
    background: orange;
    position: relative;
    top: 37%;
    left: 37%;
    display: block;
    border: 0.5px solid #fff;
    border-radius: 50%;
}

#albums{
    width: 30vw;
    padding-left: 5%;
    float: left;
}
#albums ul li img{
    width: 15vw;
    margin-top: 9%;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    
}

#multimedia{
    width: 55%;
    border-radius: 2%;
    padding-top: 2%;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    float: left;
    background-image: linear-gradient(to bottom, hsl(0, 80%, 50%), #bada55);      
    
}

main {
    position: relative;
    top: 50px;
    
}
img {
    margin-bottom: 40px;
    
}

table{
    width: 100%;
}
table th{
    text-transform: uppercase;
}
tbody tr:nth-child(odd){
    background-color: #868585;
}
tbody tr:hover{
    opacity: 0.6; filter: alpha(opacity=6);
}

audio{
    width: 100%;
}

main{
    width: 100%;
    margin: 0;
    padding-bottom: 3%;
}

#pager a{
    font-size: 3rem;
    font-weight: bolder;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.8);
    padding-left: 10px;
    padding-right: 10px;
}
#pager a:hover{
    opacity: 0.7;
    filter: alpha(opacity=40);
    font-size: 3.2rem;
    background-image: linear-gradient(to bottom, hsl(0, 80%, 50%), #bada55);
}
#vorige{
    z-index: 1;
    margin-left: 10px;
    position: fixed;
    top: 45%;
    left: 4%;
}
#volgende{
    z-index: 1;
    margin-right: 10px;
    position: fixed;
    top: 45%;
    right: 4%;
}


    footer {
        position: relative;
        bottom: 0;
        right: 0;
        left: 0;
        margin: 0;
        float: left;
        text-align: center;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 5px;
        background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    }



/* Safari, Opera */
@-webkit-keyframes revolutie {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}
/* Standard */
@keyframes revolutie {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}


@media screen and (max-width: 600px) {
    #albums {
    height: 100vh;
    }

    /* Navigation */
    .test ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
      }
      .test li {
        margin: 10px 0;
      }
    
      /* Disc animation */
      #disc {
        border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
    width: 150px;
    height: 150px;
    margin-top: 10%;
      }

      #center {
        width: 50px;
        height: 50px;
      }
    
      /* Scroll buttons */
      #pager {
        position: absolute;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 10px;
      }
    
      /* Footer */
      .test footer {
        text-align: center;
        margin-top: 30px;
      }
}