body {
    margin-top: 2em;
	margin-left: 10em;
	margin-right: 10em;
	background-color: #141414;
	color: #CCCCCC;

	font-family: monospace;
    font-size: large;
}

#center_elm {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 80%;
}

#pfp {
	clip-path: rect(0px 256px 256px 0px round 15%);
}

footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
    margin-top: 85px;
    z-index: 1;
    font-size: 18px;
}

a {
    color: #32cd32;
    text-decoration: none;
}

img {
    border-radius: 10px;
}

.header_link {
    border-radius: 10px;
    color: white;
    padding: 10px 10px;
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
}

.header_link:hover {
    background-color: transparent;
    border: 2px solid #32cd32;
}

.header_link:active {
    background-color: #32cd32;
}

#current_link {
    border: 2px solid white;
}

.drawing:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

audio {
    background-color: #32cd32;
}

#music_player, #music_details {
    margin: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.music_progress {
    width: 100%;
    height: 15px;
    border-radius: 16px;
}

#music_cover_art {
    margin: 10px;
    margin-bottom: 30px;
    max-width: 200px;
}

#progress {
    width: 100%;
}

button {
  color: white;
  background-color: rgb(10 10 10/ 10%);
  text-decoration: none;

  border-radius: 16px;
  text-align: center;
  border: 2px solid white;

  margin: 2px;
  padding: 0.5em;

}

.music_button {
  width: 32px;
}

button:hover {
  border: 2px solid #32cd32;
}

button:active {
  background-color: #32cd32;
}

input {
  border: #32cd32 solid;
  border-radius: 10px;
  background-color: transparent;
  color: white;
  padding: 0.5em;
  margin: 0em 0.5em;
}

.input_form {
  display: inline;
  align-items: baseline;
}


.slider {
  -webkit-appearance: none;
  cursor: pointer;
  border: 2px solid #32cd32;
  height: 15px;
  border-radius: 10px;
  background: #32cd32;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

#progress {
  width: 100%;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #141414;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
}

#profile_container {
  position: fixed;
  top: 10px;
  right: 10em;
  z-index: 9999;
  padding: 8px;
  border-radius: 20px;
  justify-content: space-around; /* pushes first to left, last to right */
  display: flex;               /* center children */
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  background-color: #141414;
  border: 2px solid #32cd32;
  height: auto;
}

#profile_container .profile {
  margin: 0;                   /* remove p default margins */
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  word-break: break-word;      /* keep long names from overflowing */
}
