/*h1 style*/
h1 {color:red;
  text-decoration-line: underline;
  text-decoration-color: black;
font-size: 50px;
font-family: papyrus;}
/*h2 style*/
h2 {color:black;
font-family: garamond;}
/*paragraph style*/
p {color:red;
  width: 600px;
  border: 12px solid red;
border-style: ridge;
background: black; opacity: 0.8;
font-family: garamond;
  text-align: center;
}
/*link style*/
a {color:red}
/*buttons*/
.button {
  background-color: rgba(255, 0, 0, 0.71);
  border: 12px solid black;
border-style: groove;
  border-radius: 5px;
  color: black;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: papyrus;
  cursor: pointer;
}
/*bg flame gif*/
body {background-image: url("https://upload.wikimedia.org/wikipedia/commons/5/5d/BurningFlame0.gif?_=20130626175415");
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8000px;}
/*payment link*/
.row {
  display: -ms-flexbox; 
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-25 {
  -ms-flex: 25%; 
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; 
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; 
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}
/*generic container*/
.container {
  background-color: red; opacity: 0.8;
  padding: 5px 20px 15px 20px;
  border: 12px groove lightgrey;
  border-radius: 6px;
  width: 700px;
}
/*write box*/
input[type=text] {
  width: 80%;
  margin-bottom: 20px;
  padding: 12px;
  border: 6px solid black;
  border-radius: 3px;
}

label {
  margin-bottom: 10px;
  display: block;
  font-family: papyrus;
}
/*review text box*/
textarea {
    width: 590px;
    padding: 12px;
    border: 6px solid grey;
    border-radius: 4px;
}
/*audio box formatting to make it impossible to mute*/
.audio-player {
  display: grid;
  grid-template-rows: 0px;
}
