
 body {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    background-color: #e0e0e0; 
    color: #3a3a3a;
    margin: 40px;
 
    line-height: 1.6;
  }

h1 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 3em;
  color: #6b4f4f;
  text-align: center;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

h2 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 2em;
  color: #5a3a3a;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #6b4f4f;
  padding-bottom: 5px;
}

h3 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  text-align:center;
  margin-bottom:15px;
  color: #5a3a3a;
}

p {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 1.2em;
  max-width:800px;
  margin:auto;
}

a {
  color: #7d5a5a;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #a0522d;
}

img {
    display:block;
    max-width:300px;
    height:auto;
    margin:auto;
    border-radius:10px;
    box-shadow:0px 4px 12px rgba(0,0,0,0.5);
}

ol, ul {
   max-width:800px;
   margin:auto;
   padding-left:20px;
}
ol {
  list-style: none; 
  counter-reset: mycounter;
}

ol li {
  counter-increment: mycounter;
  position: relative;
  padding-left: 30px; 
}

ol li::before {
  content: counter(mycounter) ". ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  text-decoration: underline; 
  color:#6b4f4f;
}

   ul li {
  list-style: none;
  position: relative; 
  padding-left: 25px; 

}
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height:12px;
  background-color:#6b4f4f; 
}

li {
   margin-bottom:10px;
   font-size:1.2em;
}

ol li::marker {
  color:#6b4f4f;
}
ul li::marker {
   color:#6b4f4f;
}



.form-section {
   max-width:900px;
   margin:auto;
   padding:20px;
   background-color:#f5f5f5;
   border-radius:1px;
   border-top:4px solid #6b4f4f; 
} 

.top-menu {
  width: 100%;
  background-color: #333; 
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100; 
}

.top-menu ul {
  display: flex; 
  justify-content: center; 
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-menu li {
  margin: 0 10px; 
}

.top-menu a {
  display: block;
  padding: 8px 12px;
  border: 1px solid #7d5a5a; 
  border-radius: 4px;
  color: #fff; 
  text-decoration: none;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-weight: bold;
}

.top-menu a:hover {
  background-color: #555; 
}
   
@media (max-width:600px) {
  
  body {
    margin:10px; 
    line-height:1.4;
    font-size:14px; 
  }

  h1 {
    font-size:2em; 
    margin-bottom:10px;
  }

  h2 {
    font-size:1.5em;
    margin-top:20px;
    margin-bottom:8px;
    border-bottom-width:1.5px; 
    padding-bottom:3px;
  }

  h3 {
    font-size:.9em; 
    margin-bottom:.8em;
}

 p {
   font-size:.95em;
 }

 li {
   font-size:.95em;
 }