img {
  height: 100%;
  background-color: #0CB1C4;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
  position: relative;
  display: block;
  margin: auto;
  width: fit-content;  
}

h1 {
    display: inline;
}
audio {
    display: inline-block;
    overflow: visible;
}
.header {
    display: inline-block;
    width: 100%;
    height: fit-content;
}

div {
    width: 100%;
    align-items: center;

}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}