body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background-color: #f26722;
  color: white;
  /*padding: 1.5rem;*/
  text-align: center;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  align-items: center;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
  margin-left: 10px;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

section {
  margin-bottom: 2rem;
}

/*ul, ol {
  padding-left: 1.5rem;
}*/

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin: 2rem 0;
}

a{
  text-decoration: none;
  color: black;
}

nav a{
  color: white;
  font-weight: 600;
  padding-right: 10px;
}

nav a:hover {
  /*text-decoration: underline;*/
  color: gray;
}


@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    padding: 10px;
  }
}


/*
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  nav {
    margin-top: 10px;
  }
  
  nav a {
    display: block;
    margin: 5px 0;
  }
}

*/
