body{
    background-image: url("padding.png")
}

h1{background-color: white;}

video:hover{
    transition-duration: 2s;
    transition-property: transform;
    transform: rotate(-360deg);
}

.voice:hover{
    transition-duration: 1s;
    transition-property: transform;
    transform: scale(1.1);
}

.video2:hover{
    transition-duration:67s;
    transition-property: transform;
    transform: rotate(764534562deg);
}

.padding:hover{
    transform: scale(500%) rotate(98356394deg);
    transition-duration:67s;
}

.drift:hover{
    transform: translate(120px, 100px);
}

.alien:hover{
    transform: translate(600px,1px)
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bonus {
  animation: spin 5s infinite linear;
}

