body {
  margin: 0;
  padding: 1rem;
  font-family: 'Fredoka', sans-serif;
  background-color: #F37070;
  color: white;
  min-height: 100vh;
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  flex: 1 1 400px;
  box-sizing: border-box;
  padding: 1rem;
}

.pitch {
  max-width: 500px;
}

.headline {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: lowercase;
}

p {
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: justify;
}

a{
  color: #c1cbf1;
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-box h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.language-switcher button {
  background: white;
  color: #F37070;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  margin-left: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s;
}

.language-switcher button:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .column {
    max-width: 90%;
  }
}