/* 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." */
   
@font-face {
    font-family: "VCR"; 
    src: url("VCR.ttf") format("truetype");
}

body {
  background-image: url(flesh.webp);
  background-size: 60%;
  background-position: top left;
  background-repeat: repeat;
  color: black;
  font-family: VCR;
}

.body {
  background-color: white;
  width: 600px;
  height: 600px;
  margin: auto;
  border: 20px solid white;
  border-radius: 20px;
}

.text {
  padding: 20px;
  color: #db3004;
  text-align: center;
}

.headertxt {
  font-size: 32px;
  color: #740000;
}

.sub {
  font-size: 16px;
}

button {
  background-color: #db3004;
  color: white;
  border: 10px solid #db3004;
  border-radius: 15px;
  font-size: 32px;
  font-family: VCR;
  transition: 0.3s;
  width: 200px;
  height: 50px;
}

button:hover {
  background-color:#740000;
  border: 10px solid #740000;
}
  
a:link {
  color: #db3004;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #740000;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: #740000;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #740000;
  background-color: transparent;
  text-decoration: underline;
}

