:root {
  --background1: #fafafa;
  --background2: #e9f2f3;
  --highlight-main: #319795;
  --highlight-sub: #1d4044;
  --body-text: #557d82;
  --link-main: #e2857d;

  --section-padding-h: 30px;
  --section-padding-v: 40px;
  --section-max-width: 1200px;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* hide scroll bar ie/edge and firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Roboto";
  background-color: rgb(39, 39, 39);
  color: rgb(169, 169, 169);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

h1 {
  font-size: 2em;
  text-align: center;
}

img {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.4);
}

a {
  text-decoration: inherit;
}

/* hide scroll bar chrome, safari */
body::-webkit-scrollbar {
  display: none;
}

.Section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding-v) var(--section-padding-h)
    var(--section-padding-v) var(--section-padding-h);
  max-width: 1200px;
}

.Section_inPageLink {
  text-decoration: none;
  color: var(--highlight-main);
  transition: 0.5s;
}

.Section_inPageLink:hover {
  color: var(--highlight-sub);
  font-weight: bold;
}

.Section_privacy {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.Privacy_content > h3 > a {
  text-decoration: none;
  color: var(--link-main);
  transition: 0.5s;
}

.Privacy_content > h3 > a:hover {
  text-decoration: none;
  color: var(--highlight-sub);
  transition: 0.5s;
}

.Privacy_pageLinks {
  list-style-position: inside;
}

.Privacy_pageLinks > ol {
  color: var(--highlight-main);
  padding-bottom: 40px;
}

.Privacy_linkTarget::before {
  display: block;
  content: " ";
  margin-top: -100px;
  height: 100px;
  visibility: hidden;
}

.Privacy_tableHead {
  background-color: var(--highlight-main);
  color: white;

  & tr > th {
    padding: 10px 10px 10px 10px;
  }
}

.Privacy_table > tbody > tr > td {
  padding: 50px 10px 50px 10px;
}

.Privacy_table > tbody > tr:nth-child(even) {
  background-color: var(--background2);
}
