@font-face {
  font-family: 'Albert Sans';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/albert_sans.ttf) format('truetype');
}


body {
    font-family: 'Albert Sans', Arial, sans-serif;
    line-height: 1.6;
    letter-spacing: 0.2px;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    counter-reset: section-counter;
}

header {
}

.hero {
    position: relative;
    background: url('/images/clouds.gif') no-repeat center center/cover;
    padding: 2rem;
    color: #fff;
    display: flex; 
    flex-direction: row; 
    align-items: center; 
}

.logo-left, .logo-right {
    min-width: 180px;
    max-width: 300px;
    width: 18vw;
    flex: 10 10 18vw;
}

.logo-left {
    order: -1;
}

.logo-right {
    order: 1; 
}

.hero-text {
    margin: 4rem 0px;
    font-size: 1.5rem;
    color: black;
    text-align: center;
    flex: 15 15 60vw;
}

.hero-text b {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    color: #37363f;
    text-shadow: none;
    padding: 5px;
}

.hero-text h2 {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    color: #37363f;
    text-shadow: none;
    margin-bottom: -1rem;
    margin-top: 0.5rem;
}

.hero-top-text {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2.3px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.hero-bottom-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2.3px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}


main {
    padding: 1rem;
}

section {
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    counter-increment: section-counter;
}

section h2 {
    color: #333;
}

section h2::before {
    content: counter(section-counter) ". ";
}

.group {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px; 
}

.group > div {
  flex: 10 10 150px;
  padding: 4px 0; 
  margin: 10px 1rem;
  border: 1px grey dotted;
  border-radius: 15px;
}

.group div > div {
 padding: 5px;
 display: grid;
 grid-template-columns: 75px 2fr;
 gap: 10px;
}

footer {
    text-align: center;
    background: #333;
    color: #fff;
    width: 100%;
    padding: 5px 0px;
}

.language-picker {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  position: fixed;
  top: -4px;
  right: -7px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 8px 20px;
}

.language-picker::before {
  content: "\1F310"; 
  margin-right: 8px; 
  font-size: 20px; 
}

.language-picker select {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f2f2f2;
  cursor: pointer;
  width: 200px;
}

.language-picker select:hover {
  background-color: #e6e6e6;
}

.language-picker select:focus {
  outline: none;
  border-color: #4CAF50;
}

.language-picker select option {
  padding: 8px;
}

.language-picker select option:hover {
  background-color: #ddd;
}

@media screen and (max-width: 900px) {

  .hero {
     padding: 5rem 1rem;
     flex-direction: column;
  }

  .group {
     flex-direction: column;
  }

  .hero-text {
     margin: 0px;
  }
}
