html { font-family: "Helvetica", Sans-serif; } body{ background: url(/assets/img/pattern.png); margin: 0px; padding: 0px; } a { font-weight: normal; } #hero { position: relative; height: 100vh; width: 100%; -webkit-transition: background .5s ease-in-out; transition: background .5s ease-in-out; background-image: url({{}}); } /* MUSIC INDEX */ .musiflex { display: flex; flex-wrap: wrap; margin: 0; padding: 0; } .trackcontainer { flex: 1 1 300px; padding: 10px; margin: 0; background-color: rgba(201, 240, 196, 0.85); h1, h2, h3, p { padding: 5px; color: rgb(0, 0, 0); } } .track { width: 100%; background-size: cover; background-position: 50% 50%; min-height: 300px; padding: 0; margin: 0; } /* Music Template */ #player { display: flex; flex-wrap: wrap; width: 100%; margin: 0; padding: 0; height: 100vh; } #controls { display: flex; flex: 0 0 200px; flex-wrap: wrap; padding: 15px; margin: 0 auto; .container { background: linear-gradient(230deg, #ff7951, #ec00e3, #00d5ec, #00ecaf, #6d00ec); background-size: 1000% 1000%; -webkit-animation: AnimationName 30s ease infinite; -moz-animation: AnimationName 30s ease infinite; animation: AnimationName 30s ease infinite; @-webkit-keyframes AnimationName { 0%{background-position:0% 91%} 50%{background-position:100% 10%} 100%{background-position:0% 91%} } @-moz-keyframes AnimationName { 0%{background-position:0% 91%} 50%{background-position:100% 10%} 100%{background-position:0% 91%} } @keyframes AnimationName { 0%{background-position:0% 91%} 50%{background-position:100% 10%} 100%{background-position:0% 91%} } margin: 0 auto 0 0; text-align: center; border-radius: 20px; padding: 10px; } } button { background-color: #f00; width: 100px; height: 100px; border-radius: 100px; transition: background-color 0.5s ease-in-out; } button:hover { background-color: rgb(253, 83, 83); } #info { flex: 1 1 500px; min-height: 80vh; padding: 15px; background-color: #97bd924d; background-size: cover; background-position: center; background-repeat: no-repeat; } #timer { flex: 1 1 200px; background-color: rgba(201, 240, 196, 0.85); padding: 15px; background-size: cover; background-position: center; p { background-color: rgba(151, 189, 146, 0.3); padding: 10px; border-radius: 3px; color: #000; box-shadow: 5px 10px rgba(61, 0, 102, 0.5); border: #000 solid 1px; } img { box-shadow: 5px 10px rgba(61, 0, 102, 0.5); } } #tracktime { margin-bottom: auto; } #navigation { position: fixed; bottom: 10px; right: 10px; }