* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 1.44rem;
    line-height: 1.44;
    height: 100%;
  }

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

body{
    background-color: rgb(191, 63, 63);
}
h1 {
    color: rgb(215, 157, 157); 
    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;
}
  img {
    opacity: 0.25;
    transition: opacity 500ms;
    width: 25%;
    position: absolute;
    padding: 25px;
  }
  
  img:hover {
    opacity: 1;
  }

  p{
    color: rgb(215, 157, 157); 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    letter-spacing: 1px; 
    word-spacing: 15px; 
    text-shadow: 5px 5px 5px rgb(46, 11, 19); 
    font-size: 30px;
    padding: 8px;
  }

  .fancy-button { 
    background-color: rgb(121, 22, 22);
    padding: 10px 40px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px pink;
    color: white;
    
     /* place buttom of the page*/
    position:relative;
    margin-top:100%;
}
.fancy-button:hover{ 
    background-color: rgb(144, 79, 79);
    color: white;
}

 