html,body {
  --backgroud_light:#61c6c7;
  --backgroud_middle: #61c6c7;
  --backgroud_dark: #3C9294;
}

.navbar {
  z-index: 99;
  font-family: "Open Sans","Helvetica Neue",Arial;
  position: absolute;
  background-color: transparent;
  color : white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
}


.navbar-link a {
  padding-left: 17px;
  text-decoration: inherit;
  padding-right: 17px;
  padding-top: 1.2%;
  padding-bottom: 1.2%;
  margin: 1em;
  color: white;
}

.navbar-link a:hover {
  transition: 0.3s;
  color: #692672;
}

.navbar-language select {
  background: transparent;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  padding: 5px;
}

/* Change text color for all options */
.navbar-language option {
  color: black; /* Default color for all options */
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 13px;
}

p {
  font-size: 16px;
}

@keyframes pulse {
  0% { transform: scale(1); background-color: var(--backgroud_light); }
  50% { transform: scale(1.07); background-color: var(--backgroud_dark); }
  100% { transform: scale(1); background-color: var(--backgroud_light); }
}