/* Removes the scroll bar */
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
body {
  -ms-overflow-style: none; /* Internet Explorer, Edge */
}
html {
  scrollbar-width: none; /* Firefox */
}

body{
  font-family: 'Open Sans', Arial, sans-serif;
  background-color:#ffffff;
  color:#000000;
  margin: 0; 
  padding-top: 54px;
  padding: 0;
}

h1, h2 {
    font-family: 'Ethnocentric', sans-serif; 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000; 
}

header{
  width:100%;
  background-color: #ffffff;
  color:#000000;
  display:block;
  justify-content: center;
  padding-bottom: 20px;
}

header nav {
  top: 0;
  left: 0;
  width: 100%;
  height:3%;
  padding:15px 0;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  z-index: 100;
}

header nav ul {
  list-style: none;
  display:flex;
  justify-content: center;
  gap:40px;
  margin: 0;
  padding:0;
  font-size: 1.1rem;
}

header nav ul a {
  color: #FDB31E;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

header nav ul a:hover{
  color: #FF0000;
}

header nav ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; 
    display: block;
    bottom: -12px; 
    left: 50%;
    background: #FF0000; 
    transform: translateX(-50%); 
    transition: width 0.3s ease;}

header nav ul a:hover::after {
    width: 100%;
}

