*{ 
    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;
 
}

#platform{
    width: 200px;
    height: 350px;
    background-color: beige;
    transform: translate(100px) rotateX(55deg) rotateZ(45deg);
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgba(204, 204, 204, 0.95), 
        44px 44px 24px rgba(204, 204, 204, 0.25);
    transition: 0.3s ease-in-out transform, 0.3s ease-in-out box-shadow;
}

#platform:hover{
    transform: translateX(100px) translateY(-24px) rotateX(55deg) rotateZ(45deg);
    box-shadow: 1px 2px 10px rgba(214, 185, 222, 0.95), 
        70px 70px 24px rgba(204, 204, 204, 0.15);
}

.fancy-button { 
    background-color: rgb(135, 5, 74);
    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(224, 124, 161);
    color: white;
  }
  