html {
  color: #FFFFFF;
  font-family: Poppins, Noto Sans, Arial, Helvetica, sans-serif;;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
  padding: clamp(min(1170px, 16px), 3.819vw, 55px) clamp(min(1170px, 16px), 7.639vw, 110px);
  margin: 0;
  background-image: url("Background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  overflow: hidden;
}

body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

@media screen and (min-width: 90em) {
  body:before {
    background-color: rgba(0,0,0,0.2);
  }
}

body * {
  z-index: 1;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

img {
  height: auto;
  width: 100%;
  max-width: 319px;
  margin: 0 0 clamp(min(1170px, 16px), 9.402vw, 36px);
}

a {
  white-space: nowrap;
  font-family: inherit;
  color: inherit;
}

h1 {
  width: clamp(min(1170px, 100%), 5vw, 50%);
  margin: 0 0 clamp(min(1170px, 16px), 2.903vw, 36px);
  font-family: inherit;
  font-size: clamp(min(1170px, 36px), 3.819vw, 55px);
  line-height: clamp(min(1170px, 42px), 4.306vw, 62px);
  color: inherit;
}

@media screen and (min-width: 90em) {
  h1 {
    font-size: clamp(min(1170px, 55px), 7.639vw, 110px);
    line-height: clamp(min(1170px, 62px), 8.681vw, 125px);
  }
}

ul {
  margin: 0;
  list-style: none;
}

table {
  margin: 0 auto;
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
}

th,td {
  padding: 5px;
  border: 1px solid #FFFFFF;
  vertical-align: top;
}

footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 clamp(min(1170px, -16px), 2.906vw, -2.5em);
}

footer li {
  padding: 0 clamp(min(1170px, 16px), 2.906vw, 2.5em);
}

footer a {
  font-size: clamp(min(1170px, 16px), 2.361vw, 34px);
  line-height: clamp(min(1170px, 18px), 3.542vw, 51px);
}

footer address {
  position: absolute;
  bottom: clamp(min(1170px, 50px), 7.639vw, 120px);
  right: 16px;
  padding: 16px 28px 16px 16px;
  border: 2px solid #FFFFFF;
  font-family: inherit;
  font-size: clamp(min(1170px, 16px), 1.944vw, 28px);
  line-height: clamp(min(1170px, 18px), 2.917vw, 42px);
  color: inherit;
  transition: 0.5s;
}

@media screen and (min-width: 90em) {
  address {
    padding: 20px 52px 20px 20px;
    right: clamp(min(1170px, 16px), 7.639vw, 110px);
  }
}

@media screen and (min-width: 120em) {
  address {
    padding: 28px 85px 28px 20px;
  }
}

@media screen and (min-width: 125em) {
  address {
    bottom: clamp(min(1170px, 16px), 5.729vw, 55px);
  }
}

footer span {
  font-family: inherit;
  font-size: clamp(min(1170px, 16px), 2.361vw, 34px);
  line-height: clamp(min(1170px, 18px), 3.542vw, 51px);
  color: inherit;
}

footer address a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.pp main{
  flex-direction: column;
  margin: 0 0 clamp(min(1170px, 16px), 4.167vw, 34px);
}

.pp h1 {
  width: auto;
  margin: 0 auto clamp(min(1170px, 25px), 3.472vw, 50px);
  font-weight: 500;
  font-size: clamp(min(1170px, 36px), 2.847vw, 41px);
  line-height: clamp(min(1170px, 42px), 3.194vw, 46px);
}

@media screen and (min-width: 90em) {
  .pp h1 {
    font-size: clamp(min(1170px, 55px), 5.694vw, 82px);
    line-height: clamp(min(1170px, 62px), 6.528vw, 94px);
  }
}

.table {
  width: 100%;
  overflow: auto;
}

.content {
  width: 100%;
  overflow: auto;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,0.1);
  border-radius: 5px;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.4);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.6);
}