#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
#modal .modal {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 400px;
  background-color: rgba(46, 46, 46, 0.6);
  z-index: 2;
}
#modal .modal .modal-text-area {
  padding: 5px 0;
  width: 90%;
  height: 80%;
  overflow: scroll;
  border: solid 1px #333333;
  color: #fafafa;
  text-align: center;
}
#modal .modal .modal-text-area h2 {
  font-weight: 700;
  font-size: large;
  padding: 25px 0;
}
#modal .modal .modal-text-area p {
  padding: 5px 0;
}
#modal .modal .modal-text-area ul li {
  padding: 5px 0;
}
#modal .modal .closeModal {
  margin: 10px 0;
  width: 50%;
  height: 50px;
  border: none;
  border-radius: 6px;
  color: #fafafa;
  background: #0073c7;
  text-align: center;
}
#modal .modal .modal-text-bold {
  font-weight: bold;
}

footer {
  width: 100vw;
  padding: 60px 0;
}

footer .wrapper {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

footer .nd {
  cursor: pointer;
}
