body {
  font-family: "Lucida Console", "Courier New", monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  overflow: auto;
  background: #FFFfff;
}

h1 {
  font-size: 80px;
  text-align: center;
  color: #000000;
  position: fixed;
  top: 200px;
}

a {
  color: gray;
}

a:hover {
  color: black;
  text-shadow: 2px 2px 40px blue;
  cursor: url("https://cdn.glitch.global/59a4b512-c48f-4638-9804-39350f5f4a2f/arrow.png?v=1645512332438"),
    auto;
}

input[type="text"],
input[type="submit"] {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 16px;
  padding: 8px;
  margin: 5px;
  margin-top: 150px;
}

.home {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex; /* Use flexbox */
  flex-direction: column; /* Arrange items vertically */
  align-items: center; /* Center horizontally */
  justify-content: center;
}

.home p {
  font-size: 14px;
  margin-top: 60px; /* Add some space between the icon and text */
  text-align: center;
  
}

.home img {
  width: 50px;
  border-radius: 50%;
} 




