/* General Styles */
body {
  Font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
  
Header {
  background-image:<a href="https://example.com"><img src="image.jpg" alt="Description of Image"></a>


  color: white;
  padding: 15px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

input[type="text"] {
  margin: 15px 0;
  padding: 5px;
  width: 300px;
}

section {
  padding: 20px;
}


/*mycode*/ 

.undertale-box {
  border: 4px solid #fff;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  background-color: rgba(0, 0, 0, 1);
  font-size: 20px;
  line-height: 1.6;
  position: fixed;
}

.undertale-text-sansy {
  color: white;
  text-align: center;
  font-family: 'comic-sans',  monospace;
  font-size: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}


footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
  nav ul li {
    display: block;
    margin: 5px 0;
  }

  input[type="text"] {
    width: 100%;
  }
}


