h1{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    font-size: 60px;

}

img{
    transition: transform 0.1s;
}
#Linear:hover{
    transform: translateX(20%);
}

#rotation:hover{
    transform: rotate(15deg);
}

#scaling:hover{
    transform: scale(1.2);
}

body{
    margin:auto;
    width: 100%;
    text-align: center
}