:root {
  --fg-size: 800px;
  --bg-size: 1.1125;
  
  --fg-base: 400; 
  --fg-scale: min(1, calc(var(--fg-size) / (1px * var(--fg-base))));
}

@media (max-width: 800px) {
  :root {
    --fg-size: 280px;
  }
}
@media (max-width: 320px) {
  :root {
    --fg-size: 200px;
  }
}

body {
  margin: 0;
  padding: 0;
  width: 100dvw;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-x: hidden;  
  scroll-behavior: smooth;
}

nav {
  width: 100%;
  background-color: #000;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.Logo {
  max-width: calc(16rem * var(--fg-scale));
  margin: 15px auto 10px auto;
  z-index: 101;
}
.Into {
  text-transform: uppercase;
  color: antiquewhite;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: calc(0.7rem * var(--fg-scale));
}
.Into a {
  color: antiquewhite;
  text-decoration: none;
}
.Into a:hover {
  color: #ffffff;
}


.MySites {
  margin-top: 2rem;
  align-items: left;
  justify-content: left;
  user-select: none;
  padding: 10px;
}
.MySites a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
 
}
.MySites a:hover {
  color: aqua;
}
.Logo {
  max-width: calc(16rem * var(--fg-scale));
  margin: 15px auto 10px auto;
  z-index: 101;
}
h3 {
  font-size: calc(1.5rem * var(--fg-scale));
  font-weight: 500;
}
.More {
  text-decoration: none;
  color: inherit;
}

#Info {
  margin: 5em auto;
  max-width: calc(500px * var(--fg-scale));
  padding: 30px;
  box-sizing: border-box;
  font-size: 0.98rem;
  line-height: 1.2;
  color: #333;
}

 footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 5px;
  text-align: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  z-index: 100; 
  background-color: rgba(250, 235, 215, 0.192);
}

.Copyright {
  text-transform: uppercase;
  font-size: calc(0.7rem * var(--fg-scale));
  margin-bottom: 1em;
  color: #00000079;
  white-space: nowrap;
  user-select: none;
}
.Copyright img {
  image-rendering: crisp-edges;
  margin-top: 1rem;
  max-width: calc(8rem * var(--fg-scale));
  pointer-events: none;
  opacity: 0.3;
}
.PPolicy {
  font-size: calc(0.65rem * var(--fg-scale));
  font-style: italic;
  text-transform: capitalize;
  color: #00000075;
  text-decoration: none;
}