/*
Theme Name:   Divi Child
Theme URI:    http://example.com/divi-child
Description:  A child theme for Divi
Author:       Sarkis Moeradjan
Author URI:   http://studioicon.nl.com
Template:     Divi
Version:      1.0.0
*/

body {
	background-color: #000 !important;
}

.typing-center {
  width: 100%;
  display: flex;
  justify-content: center;     /* centreert de hele tekst */
}

.typing-effect {
  display: inline-block;
  text-align: left;            /* super belangrijk! cursor blijft kloppen */
  white-space: normal;         /* natuurlijke regels → centreren werkt */
  max-width: 90%;              /* optioneel */
}

.typing-effect .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: currentColor;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}


.language-switcher {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.language-switcher a {
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
	border: .5px solid #999;
  transition: 0.2s ease;
}

.language-switcher a:hover {
  background: #f2f2f2;
  color: #000;
}

.language-switcher span {
  color: #999;
}

