/* Základní styly */
* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: auto;
  color: white; /* Barva textu pro všechny elementy */
}

body {
  margin: 0; /* Reset margin pro body */
  background-color: #242628; /* Tmavé pozadí */
}

/* Styly pro nadpisy a text */
.header {
  padding: 40px 20px;
  width: 80%;
  max-width: 800px;
  margin: 20px auto 0;
  background-color: rgba(255, 255, 255, 0.1); /* Průhledné pozadí */
  border-radius: 8px; /* Zaoblené hrany */
}

.header h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.header p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* Styly pro sekce About Me a Professional Experience */
.about-me,
.professional-experience {
  padding: 40px 20px;
  width: 80%;
  max-width: 800px;
  margin: 20px auto 0;
  background-color: rgba(255, 255, 255, 0.1); /* Průhledné pozadí */
  border-radius: 8px; /* Zaoblené hrany */
}

.about-me h2,
.professional-experience h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-me ul,
.professional-experience ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-me li,
.professional-experience li {
  font-size: 18px;
  line-height: 1.6;
}

/* Media queries pro responsivní design */
@media screen and (max-width: 600px) {
  .about-me,
  .professional-experience,
  .header {
    width: 100%;
    padding: 30px 10px;
    max-width: none;
  }

  .header h1 {
    font-size: 24px;
  }

  .header p {
    font-size: 16px;
  }

  .about-me h2,
  .professional-experience h2 {
    font-size: 24px;
  }

  .about-me li,
  .professional-experience li {
    font-size: 16px;
  }
}
