/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
.top-center {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

body {
  background-image: url('tlo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #00FF00;
  font-family: "Courier New", monospace;
  margin: 0;
}
.button-back {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #ff00ff;
  color: black;
  border: 2px solid #00ff00;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px #00ff00;
  transition: all 0.2s ease;
}

.button-back:hover {
  background-color: #00ff00;
  color: black;
  border-color: #ff00ff;
  box-shadow: 2px 2px #ff00ff;
}

.button {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 25px;
  background-color: #ff00ff;
  color: black;
  border: 2px solid #00ff00;
  text-decoration: none;
  font-weight: bold;
  font-family: monospace;
  font-size: 20px;
  box-shadow: 2px 2px #00ff00;
  transition: all 0.2s ease;
}

.button:hover {
  background-color: #00ff00;
  color: black;
  border-color: #ff00ff;
  box-shadow: 2px 2px #ff00ff;
}
