@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);

@import url(https://cdn.materialdesignicons.com/1.3.41/css/materialdesignicons.min.css);

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.wrap {
	margin: 0 auto;
	width: 100%;
	color: white;
	text-align: center;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	position:fixed;
	bottom:0;
}


body, html {
	padding: 0;
	margin: 0;
	background: #eff0ef;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	padding-bottom: -50px;
	color: #333333;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: norepeat;
  background-attachment: fixed;
}

body *, body *:before, body *:after, html *, html *:before, html *:after {
	box-sizing: inherit;
	transition: all .5s ease;
}

body a, html a {
	text-decoration: none;
	color: white;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

body a:hover, html a:hover {
	text-shadow: 1px 1px 5px #000000;
}

body .player, html .player {
	margin-top: 50px;
	width: 100%;
	height: 75px;
	background: #fff;
	border-bottom: 4px #ccc solid;
	position: relative;
	color: black;
	text-align: left;
	text-shadow: none;
}

body .player .album-art, html .player .album-art {
    position: absolute;
    left: 0;
    width: 16%;
    height: 79%;
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.4);
    padding: 5px;
    margin: 7px;
}

body .player .album-art .cover, html .player .album-art .cover {
	width: 100%;
	height: 100%;
	box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.25);
	background: url("https://upload.wikimedia.org/wikipedia/en/6/67/Foo_Fighters_8LP_Sonic_Highways.jpg");
	background-size: cover;
}

body .player .description, html .player .description {
	position: relative;
	width: 60%;
	height: 50px;
	top: 20%;
	left: 20%;
	overflow: hidden;
}

body .player .description .title, html .player .description .title {
	color: black;
	font-size: 15px;
}

body .player .description .sub-title, html .player .description .sub-title {
	font-size: 13px;
	color: #999;
}

body .player .play-button, html .player .play-button {
	position: absolute;
	width: 55px;
	height: 55px;
	right: 10%;
	border-radius: 50%;
	top: -25px;
	background: white;
	box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.35);
	text-align: center;
	line-height: 57px;
	font-size: 26px;
	color: #D32F2F;
	cursor: pointer;
}

body .player .play-button .lp-background, html .player .play-button .lp-background {
	transition: all .35s ease;
	background: url("http://i65.tinypic.com/v5wy3b.png");
	background-size: cover;
	animation: spin 1s infinite linear;
	width: 100%;
	height: 100%;
	z-index: 1;
	position: absolute;
}

body .player .play-button i, html .player .play-button i {
	z-index: 100;
}

body .player .play-button .fa-pause, html .player .play-button .fa-pause {
	z-index: 100;
	position: absolute;
	right: 17.5px;
	top: 17.4px;
	color: #3430cb;
	font-size: 20px;
}

body .player .play-button:hover, html .player .play-button:hover {
	box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.5);
}

body .player .time-indicator, html .player .time-indicator {
	position: absolute;
	right: 11%;
	top: 60%;
	font-size: 13px;
	font-weight: 100;
}

body .player .time-indicator i, html .player .time-indicator i {
	color: #D32F2F;
}

body .player .progress-bar, html .player .progress-bar {
	width: 100%;
	top: 100%;
	opacity: 0;
	height: 0;
	position: absolute;
	cursor: pointer;
}

body .player .progress-bar .runner, html .player .progress-bar .runner {
	height: 4px;
	background: #F44336;
}

body .player .visualizer, html .player .visualizer {
	position: absolute;
	top: 25%;
	left: 37.5%;
	width: 0%;
	height: 50%;
	display: flex;
	align-items: center;
	overflow: hidden;
}

body .player .visualizer div, html .player .visualizer div {
	width: 2px;
	background: #F44336;
	float: left;
	height: 0%;
	margin-right: 5px;
	transition: all .1s ease;
}

body .player.paused, html .player.paused {
	border-bottom: none;
}

body .player.paused .visualizer, html .player.paused .visualizer {
	opacity: 0;
}

body .player.paused .lp-background, html .player.paused .lp-background {
	opacity: 0;
}

body .player.paused .play-button .fa-pause, html .player.paused .play-button .fa-pause {
	opacity: 0;
}

body .player.playing .description, html .player.playing .description {
	opacity: 0;
}

body .player.playing .album-art, html .player.playing .album-art {
	width: 0px;
	opacity: 0;
}

body .player.playing .visualizer, html .player.playing .visualizer {
	left: 5%;
	width: 65%;
}

body .player.playing .progress-bar, html .player.playing .progress-bar {
	height: 4px;
	margin: 0;
	opacity: 1;
}

body .player.playing .description, html .player.playing .description {
	left: 0%;
	opacity: 0;
}

body .player.playing .play-button, html .player.playing .play-button {
	background: #fff;
}

body .player.playing .play-button .fa-play, html .player.playing .play-button .fa-play {
	opacity: 0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.text { background:#f9f9f9; padding:10px; margin-bottom:100px; border-radius:20px; margin-top:20px; text-align:justify; font-size:16px; border:5px solid #FFFFFF; }
.text h3 { color:#cd2ea2; font-weight:bold; }
.language-toggle a {
    margin: 5px;
    padding: 4px 9px;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(30deg, #47f7de, #099b74);
    border: 1px solid #079d75;
    border-radius: 5px;
}
/*h1.heading {
    text-transform: uppercase;
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    margin: 7px auto;
    color: #264ee7;
}*/

.heading {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin: 7px auto;
  background: -o-linear-gradient(45deg,#ff8a00,#e52e71,#044bea,#7a00ff);
  background: linear-gradient(45deg,#ff8a00,#e52e71,#044bea,#7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  -webkit-animation: gradient-text 8s ease infinite;
          animation: gradient-text 8s ease infinite;
  
}
@-webkit-keyframes gradient-text {
  0% {
    background-position: 0% 50%;
  }
    50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient-text {
  0% {
    background-position: 0% 50%;
  }
    50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


