/*:root {
  --primary-color: #121212;
  --accent-color: #D1A155; 
  --main-background-color: #f0f0f0;
  --default-font-color: #333; 
  

}*/

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: var(--main-background-color);
  background-image: var(--default-bg);
  color: var(--default-font-color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 10px;
  display: flex;
  align-items: center;
  z-index: 1000; /* Ensure it's above other content */
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  padding: 20px 0px;
  justify-content: center;
  text-transform: uppercase; /* Convert text to uppercase */

  z-index: 1000; /* Ensure it's above other content */
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  height: calc(100% - 80px); /* Subtract header and footer heights */
  padding-top: 20px; /* Adjust padding as needed */
  padding-bottom: 20px; /* Adjust padding as needed */
}


.header-container {
  display: flex; /* Ensure flexbox */
  flex-direction: row; /* Always use row direction */
  align-items: center;
}



a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: darken(var(--accent-color), 20%);
}

a:active {
  color: darken(var(--accent-color), 30%);
}

a:focus {
  outline: none;
}

#headerLogo {
  height: 50px;
  width: auto;
  margin-right: 20px;
}

#companyName {
  font-size: 24px;
  margin-left: 20px;
}

.main-content {
  
  padding: 20px;
}

.point-card {
  text-align: center;
}

.big-number {
  font-size: 48px;
  margin-top: 20px;
}

.button-container {
  margin-top: 20px;
}

.button-container a {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-container a:hover {
  background-color: darken(var(--accent-color), 20%);
}
