@font-face {
    font-family: myFirstFont;
    src: url("./woff/mark_my_words.woff");
}

h1 {
    font-family: myFirstFont;
    text-align: center;
    text-shadow: 3px 3px #dddddd;
    color: #ff0044;
    font-style: oblique;
    font-size: 300%;
    font-weight: bold;
}

.content {
/*    position: fixed; */
    width: 60%;
    margin: auto;
    text-align: center;
/*    border-style: solid; */
    background: rgba(250, 250, 250, 0.7);   
}


.button {
    border: none;
    text-decoration: none;
	       -moz-border-radius: 5px;
	       background: red;
	       border: 3px solid black;
	       display: inline-block;
	       cursor: pointer;
	       padding: 3px 5px;
	       margin: 5px;
	       font-size: 150%;
}

.button:hover {
    background-color: #4CAF50; /* Green */
    color: white;
}

.stop {
       -moz-border-radius: 5px;
       opacity: 0.2;
       background: white;
       border: 3px solid black;
       display: inline-block;
       cursor: pointer;
       padding: 3px 5px;
       margin: 5px;
       font-size: 150%;
}

a:visited {
    color: #ff0044;
    text-decoration: none;
}

.btn {
  background: #ff7878;
  background-image: -webkit-linear-gradient(top, #ff7878, #b82c46);
  background-image: -moz-linear-gradient(top, #ff7878, #b82c46);
  background-image: -ms-linear-gradient(top, #ff7878, #b82c46);
  background-image: -o-linear-gradient(top, #ff7878, #b82c46);
  background-image: linear-gradient(to bottom, #ff7878, #b82c46);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 0px 1px 3px #666666;
  font-family: Arial;
  color: #eeeeee;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
}

.btn:hover {
  background: #f08484;
  background-image: -webkit-linear-gradient(top, #f08484, #e37b90);
  background-image: -moz-linear-gradient(top, #f08484, #e37b90);
  background-image: -ms-linear-gradient(top, #f08484, #e37b90);
  background-image: -o-linear-gradient(top, #f08484, #e37b90);
  background-image: linear-gradient(to bottom, #f08484, #e37b90);
  text-decoration: none;
}

.btn:visited {
  color: #eeeeee; 
}