body {
  font-family: monospace;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

.nav {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-bottom: black double 3px;
  z-index: 10;
  text-decoration: line-through red;
}

.nav a {
  margin: 0 8px;
  font-size: 1.2em;
  color: orangered;
  text-decoration: none;
}

.content {
  max-width: 700px;
  margin: 140px auto;
  padding: 20px;
  line-height: 1.6;
}

h2 {
  color: orangered;
  text-align: center;
  margin-bottom: 40px;
}

.text-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.text-list li {
  margin: 20px 0;
}

.text-list a {
  color: orangered;
  font-size: 1.2em;
  text-decoration: none;
  border: 1px solid orangered;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.text-list a:hover {
  background-color: orangered;
  color: white;
}

.nav-texts {
  text-align: center;
  margin-top: 60px;
}

.nav-texts a {
  margin: 0 10px;
  color: orangered;
  text-decoration: none;
}

.lang-nav {
  text-align: center;
  margin-top: 40px;
}

.lang-nav a {
  margin: 0 10px;
  color: orangered;
  text-decoration: none;
  border-bottom: 1px dotted orangered;
}

p {
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  .content {
    width: 90%;
    margin-top: 120px;
  }
}
