html {
  height: 100%;
  width: 100%;
}
  
body {
  background-color: white;
  margin: 0;

  font-family: "VCR OSD Mono", system-ui;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

@font-face {
  font-family: 'VCR OSD Mono';
  src: url('Fonts/VCR_OSD_MONO.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

.vhs-content {
  color: white;
}

header {
  font-size: 60px;
  text-shadow: 3px 5px 8px #C0737A; 

}

.current-date {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-family: "VCR OSD Mono", monospace, system-ui;
  padding: 2%;
  font-size: 25px;
  color: white;
  text-shadow: 1px 1px 2px #000;
}


.play {
  background-color: transparent;
  font-size: 20px;
  color: white;
  padding: 30px;
  border: none;
}

.play:hover {
  background-color: #C0737A;
}

.statement {
  text-align: center;
  padding: 20%;
  margin-top: 0;
}

.original-statement {
  background-color: black;
  position: absolute;
  width: 60%;
  padding: 3%;
  margin-left: 15%;
  margin-right: 15%;
  margin-top: 10%;
}

a {
  text-decoration: none;
  color: white;
}

button {
  font-family: "VCR OSD Mono", monospace, system-ui;
}

.cursor {
  display: inline-block;
  width: 10px; 
  height: 20px; 
  background-color: white;
  animation: cursor-blink 0.7s infinite;
}

@keyframes cursor-blink {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: white; 
  }
}
