* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/Lavendel_Web.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  text-align: center;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  max-width: 800px;
  margin: 20px;
}

h1 {
  color: #333;
  font-size: 2rem;
  line-height: 1.6;
}

.lang-switch {
  margin-top: 30px;
}

.lang-switch a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.lang-switch a:hover {
  color: #333;
  border-color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}