body {
  background-image: linear-gradient(#008102, #f1f1f1);
  min-height: 100vh;
}
body,
#dataInput {
  text-align: center;
}
tbody {
  background-color: #f1f1f1;
}
#dataInput {
  background-size: 25px;
  width: 60%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddffec;
  margin-bottom: 12px;
  border-radius: 25px;
  background: #f1f1f1;
}
#dataInput:focus {
  outline: none;
}
#dataTable {
  border-collapse: collapse;
  width: 85%;
  border: 1px solid #000;
  font-size: 18px;
  margin-bottom: 40px;
}
thead tr.header th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 1;
  border-bottom: 2px solid #dee2e6;
}
#dataTable th,
#dataTable td {
  text-align: left;
  padding: 12px;
  text-align: center;
}
#dataTable tr {
  border-bottom: 1px solid #ddd;
}
#dataTable tr.header,
#dataTable tr:hover {
  background-color: #f1f1f1;
}
a {
  color: green;
}

a:hover {
  animation-name: hovershade;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-duration: 0.2s;
  animation-delay: 0.1s;
}

h2,
h1,
p {
  font-family: "Nunito Sans", sans-serif;
}
h1:hover {
  animation-name: shade;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}
@keyframes hovershade {
  from {
  }
  to {
    text-shadow: 0.5px 0.5px 1px rgb(3, 67, 58);
  }
}
@keyframes shade {
  from {
  }
  to {
    text-shadow: 2px 2px 3px #f1f1f1;
  }
}
h1 {
  transition: 0.2s;
  margin-top: 12px;
}
#more {
  display: none;
}
