body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
}

h1 {
  background-color: #374B63;
  color: #ffffff;
  padding: 15px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

main {
  margin-top: 100px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#displayText {
  font-size: 1.2em;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #374B63;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

a:hover {
  background-color: #001b2e;
}


ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

ul:not(:first-of-type) {
  margin-top: 20px;
}

ul li:first-of-type {
    margin-top: 10px;
}

#download {
  font-style: italic;
}