html body {
  margin: 0;
  padding: 0;
  border: 0;
}

.main-container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0fbf99 0%, #0d5ea1 30%, #892177 100%)
    fixed;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px auto;
  height: 100%;
  width: 95%;
  max-width: 680px;
  padding: 30px 8px 60px 08px;
}

.headline {
  color: white;
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  transition: 800ms;
}

.lead {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.898);
  font-family: monospace;
  font-size: 120%;
  margin: 0 auto;
  padding: 20px;
}

li {
  list-style-type: "- ";
  padding-top: 4px;
}

.entry-box {
  display: flex;
  min-height: 56px;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  text-decoration: none;
  color: rgb(37, 37, 37);
  background: linear-gradient(
    230deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.7)
  );
  border-radius: 8px;
}

a {
  display: block;
  text-align: center;
}

a:hover {
  background: whitesmoke;
}
