* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: rgb(54, 60, 61);
}

header {
    background-color: rgb(239, 255, 255);
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    height: 50px;
    background-color: rgb(227, 231, 234);
    line-height: 50px;
}

nav ul {
    width: 70%;
    margin: 0px auto;
}

nav li {
    list-style-type: none;
    float: left;
    width: 30%;
    text-align: center;
}

nav a {
    text-decoration: none;
    display: block;
}

nav a:hover {
    background: rgb(54, 60, 61);
    color: rgb(239, 255, 255);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home nav li:nth-child(1) a,
.music nav li:nth-child(2) a,
.news nav li:nth-child(3) a {
    background: rgb(54, 60, 61);
    color: rgb(239, 255, 255);
}

#wrapper {
    width: 65%;
    margin: 170px auto 0 auto;
    background-color: rgb(216, 232, 232);
    padding: 1% 3%;
    border-radius: 12px;
}

@media (max-resolution: 1dppx) {
    #wrapper {
        width: 100%;
    }
}


.infomain, main {
    width: 61.7%;
    float: left;
}

aside {
    width: 36.17%;
    float: right;
}

footer {
    background-color: rgb(239, 255, 255);
    text-align: center;/*remove when you add more elements*/
    line-height: 50px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
}

footer li {
    list-style-type: none;
    float: left;
    margin-right: 30px;
}

.infobox {
    border: rgba(0, 0, 0, 0.8) 5px solid;
    border-radius: 5px;
    background-color: rgb(255, 255, 255, 0.5);
    margin: 60px auto 60px auto;
    overflow: hidden;
    clear: both;
}

.infobox a img {
    width: 90%;
    margin: 5%;
    border-radius: 5px;
}

.infobox a img:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.musicbox {
    border: rgb(69, 69, 69) 5px solid;
    background-color: rgb(43, 41, 45);
    overflow: hidden;
}

.musicheader {
    color: rgb(243, 226, 255);
    margin: 4%;
}

div.part2 {
    border: rgba(0, 0, 0, 0.5) 10px solid;
    margin: 0 auto 0 auto;
}

h1,
h2,
h3,
p,
ul {
    color: rgb(0, 59, 68);
    margin-left: 2%;
}

p {
    line-height: 1.3;
}

li {
    margin-bottom: 1%;
}

.news img {
    float: right;
    width: 180px;
    margin: 1% 1%;
}

.music audio {
    float: left;
    margin: 0 4% 2% 3%;
}

.music img {
    float: right;
    width: 152px;
    margin: 1% 1%;
}