body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff8f6;
  color: #333;
}
header {
  background: #b33434;
  color: white;
  padding: 1rem;
  padding-top: 2rem;
  text-align: center;
}
nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #ffeaea;
  padding: 0.5rem;
}
nav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
}
.lang-switch {
  position: absolute;
  top: 0rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.5rem;
}
.lang-switch button {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
main {
  padding: 1rem;
  max-width: 800px;
  margin: auto;
}
section {
  margin-bottom: 2rem;
}
footer {
  background-color: #ffeaea;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 50vh 0 50vh #ffeaea;
}
form input, form textarea, form button {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
  font-size: 1rem;
}
.info-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;

}
.info-content img {
  max-width: 200px;
  height: auto;
  border-radius: 0.5rem;
}
.info-content ul {
  flex: 1;
  margin: 0;
  padding-left: 1rem;
}
button {
  color: #000000;
  background-color: #e9e9e9;
  border-style: solid;
  border-color: #0000002f;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  min-width: 20px;
  width:fit-content;
  font-size: 16px;
  margin: 4px;
  transition-duration: 0.4s;
  cursor: pointer;
  font-weight: bold;
}
.button {
  color: #000000;
  background-color: #e9e9e9;
  border-style: solid;
  border-color: #0000002f;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  min-width: 20px;
  width:fit-content;
  font-size: 16px;
  margin: 4px;
  transition-duration: 0.4s;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background-color: #ffffff;
}
img {
  width: 30vw;
  border-radius:10px;
}
* {
  box-sizing: border-box;
}
