/* background image */
body {
  background-image: url('https://i.giphy.com/7CNpdCLqq65B6.webp');
  margin: 0;
  padding: 0;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
}

 /* return to shop */
a {
  /* font edits */
  text-align: center;
   font-size: 20px;
   font-weight: 400;
  font-optical-sizing: auto;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #ffffff;
  font-style: normal;
  /* font edits */
  font-variation-settings:
    "slnt" 0,
    "CRSV" 199.5,
    "ELSH" 0,
    "ELXP" 0;
/* box edits*/
  margin-top: 0px;
 border-radius: 70px; 
  outline-width: 2px;
  outline-offset: 7px;
  padding: 20px 40px; 
  outline: 0px solid #f7f1ef;   
  border:  6px solid #f0f0f0;    
  background-color: rgba(56, 61, 80, 0.863);    
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);                                
}
a:hover {
  background-color: #1b02ff86;
  color: #ffffff;
}




/* Thank you */
h1 {
   background-color: rgba(0, 0, 0, 0.534); 
  padding: 30px 100px;                      
  border-radius: 70px;                      
  color: #1f1212;
  -webkit-text-stroke: 1px white;
  text-align: center;
  font-family: "Bitcount Grid Double", system-ui;
  font-optical-sizing: auto;
  font-weight: 500;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 199.5,
    "ELSH" 0,
    "ELXP" 500;

  margin-top: 10px;
  font-size: 8rex;

  border: 3px solid #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  outline: 3px solid #5833ff;
  outline-offset: 5px;
}



/* Processed successfully */
 p{
  /* font edits */
  text-decoration: none;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  font-style: oblique;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f3f1f0;
  /* border edits */
  padding: 10px 1px;
  border-radius: 5px;
  margin-left: 3px;
  margin-left: 200px;
  margin-right: 200px;
  border: 2px solid #5833ff;
  background-color: #0b0980;
}
/* Button hover Style */

p:hover {
  background-color: #1b02ff86;
  color: #ffffff;
}

/* CENTERING OF PAGE*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}