* {
  margin: 0;
  padding: 0;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  text-align: justify;
}

.center {
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}

#page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 100px;
}

h1 {
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}

p {
  font-size: 16px;
  width: 60%;
  margin: auto;
  margin-bottom: 30px;
}

h2 {
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

table {
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
}

th,
td {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

th,
td {
  margin: 0;
  border: black 1px solid;
}

h3 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}

img {
  width: 50%;
}

#fusion-equation {
  width: 20%;
}

button {
  line-height: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
  border-radius: 5px;
  border: none;
  background-color: rgb(53, 182, 91);
  color: white;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px 20px;
}

button:hover {
  background-color: rgb(46, 153, 78);
  cursor: pointer;
}

#download {
  margin-left: 5px;
}

@media (max-width: 768px) {
  #page {
    width: 95%;
  }

  h1 {
    font-size: 28px;
  }

  p {
    width: 80%;
    font-size: 14px;
  }

  table {
    width: 90%;
  }

  img {
    width: 90%;
  }

  #fusion-equation {
    width: 50%;
  }

  button {
    right: 5%;
    min-width: 125px;
  }
}
