/**========= General =========**/
/* #region */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background-color: #4f4f4f;
  color: white;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

/* #endregion */
h1 {
  color: #e34f4f;
  text-align: center;
  font-size: 2.5rem;
  margin: 25px;
}

h2 {
  color: #e34f4f;
  text-align: center;
  font-size: 2.2rem;
  padding: 25px;
  margin: 0;
  border-bottom: 7px solid #e34f4f;
  width: 100%;
}

/* ------------------------------ */
#container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

/* ------------------------------ */
#table-of-contents {
  height: 100vh;
  min-width: 170px;
  width: 20%;
  padding: 0 10px 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  font-size: 1.3rem;
}

.placeholder {
  height: 70px;
  width: 100%;
}

#back_to_homepage {
  cursor: pointer;
  height: 70px;
  font-size: 1.15rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

#back_to_homepage > i:hover {
  color: #e34f4f;
}

#table-of-contents > span {
  margin: 15px 10px;
  cursor: pointer;
}

#table-of-contents > span:hover {
  color: #e34f4f;
}

/* ------------------------------ */
#content {
  width: 80%;
  height: 100%;
  position: relative;
}

#content:before {
  content: '';
  width: 2px;
  height: 100%;
  background: #e34f4f;
  position: absolute;
  left: -1px;
  z-index: 10;
}

#description {
  padding: 0 15px;
  margin: 25px 0;
  font-size: 1.25rem;
  text-align: justify;
}

#home-img {
  width: 100%;
  border-top: 15px solid #e34f4f;
  display: block;
}

.text-center {
  text-align: center;
}

.flex,
.adaptive_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.adaptive_flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  overflow-x: auto;
}

td,
th {
  font-size: 14px;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
  border-color: white;
}

th:first-child {
  border-left: none;
  min-width: 50px;
  max-width: 80px;
}

.img {
  width: 100%;
  max-height: calc(100vh - 200px);
  -o-object-fit: cover;
     object-fit: cover;
}

#home-text {
  font-size: 1.2rem;
  position: fixed;
  bottom: 0;
  right: 40%;
  margin: 20px 0;
  text-align: center;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

label {
  padding: 15px 10px 0 10px;
  display: block;
}

@media (max-width: 768px) {
  #home-text {
    font-size: 1rem;
  }
  #content {
    width: calc(100% - 170px);
  }
}

@media (max-width: 576px) {
  #home-text {
    font-size: .8rem;
    bottom: -100px;
  }
}
/*# sourceMappingURL=style.css.map */