#Rick{
    height:400px;
    width:auto;
    margin:10px;
    border-radius: 10px;
}
#stickbug{
    height:400px;
    width:auto;
    float:right;
    margin:10px;
    border-radius: 10px;
    
}
#stickbug:hover{
    transition: transform 4s;
    transform: rotate(1080deg);
}
#Rick:hover{
    transition: 2s;
    transform: translate(400px, 400px);
}
#firealarm{
    height:auto;
    width:auto;
    margin:10px;
    background-color:black;
    border-radius: 10px;

}
#firealarm:focus{
    transform: rotate(100000000000000000000000000deg);
    transition: 4000000s;
}
#beep{
    height:auto;
    width:auto;
    margin:10px;
    background-color:black;
    border-radius: 10px;
}
#beep{
    position: relative;
    animation: mymove 5s infinite;
}
@keyframes mymove {
  from {top: 0px;}
  to {top: 200px;}
}