html, body {
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #f4f4f4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: auto;
  overflow-y: auto;
  touch-action: auto;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}

/* Hide scrollbar but keep scroll working */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;	
  width: 0;
  height: 0;
  background: transparent;
}

body {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}

#fixed-container {
  #min-height: 1080px;
  margin: 0 auto;
}

/* Desktop scaling */
#@media (min-width: 1920px) {
  #fixed-container {
	transform: scale(calc(100vw / 1920));
	transform-origin: top left;
  }
}

header {
  width: 100%;
  height: 450px;
  background-image: url('header.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  aliign-items: center;
}

section {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

section h2 {
  color: #ffa000;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

footer {
  width: 100%;
  height: 450px;
  background-image: url('footer.jpg');
  background-size: cover;
  background-position: center;
  font-size: 0.9em;	  
}

copyright {		
  color: #444;
  text-align: right;
  bottom: 10px;
  position: fixed;
  right: 0;
}

.cta {
  background-color: #ff5722;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
}

.cta:hover {
  background-color: #e64a19;
}
