main
{
  padding: 10px 20px; 
  max-width: 1800px;
  margin: 0 auto;
}

body 
{
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: black;
}

header 
{
  background-color: orange;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header .logo img {
  height: 50px;
}

nav ul 
{
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a 
{
  text-decoration: none;
  color: black;
  font-weight: bold;
}

nav ul li a:hover 
{
  text-decoration: underline;
}

footer 
{
  text-align: center;
  padding: 10px;
  background-color: #ddd;
  font-size: 14px;
}

iframe {
  border: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  left: auto;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
}