*{ 
    margin: 0;
    padding: 0;
box-sizing: border-box;
}

header {
    background-color: rgb(79, 19, 97);
}

body{
    background-color: rgb(163, 128, 173);
}
h1 {
    color: rgb(193, 157, 215); 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    letter-spacing: 5px; 
    word-spacing: 20px; 
    text-shadow: 5px 5px 5px rgb(46, 11, 19); 
    font-size: 70px;
}

h2{
    color: rgb(193, 157, 215); 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    letter-spacing: 5px; 
    word-spacing: 15px; 
    text-shadow: 5px 5px 5px rgb(46, 11, 19); 
    font-size: 40px;
 
}

img{
  padding: 50px;
}



#html5,
#css3,
#car {
  transition: transform 0.5s;
}

#html5:hover {
  transform: rotate(45deg);
}

#css3:hover {
  transform: scale(2);
}

.move-right {
  transform: translateX(900px);
}



.fancy-button { 
    background-color: rgb(136, 42, 219);
    padding: 10px 40px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px pink;
    color: white;
    position:relative;
    margin-top:100%;
}
.fancy-button:hover{ 
    background-color: rgb(141, 79, 144);
    color: white;
}