* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: rgb(1, 16, 31);
    color: #f4f4f4;
  }
  
  .container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
  }
  
  /* Header */
  .main-header {
    background: rgb(1, 16, 31);
    padding: 20px 0;
  }
  
  .logo {
    font-size: 2rem;
    font-style: oblique;
    color: white;
    transition: transform 0.3s ease;
  }
  .logo:hover {
    transform: scale(1.1);
    }
    
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #f4f4f4;
    font-weight: bold;
    transition: color 0.5s;
  }
  
  .main-nav a:hover {
    color: rgb(161, 165, 215);
  }
  
  /* Hero section */
  .hero-section {
    background-image: url('billie-hero.jpg'); /* Nahraď podľa seba */
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  /* Content section */
  .content-section {
    padding: 60px 0;
  }
  
  .content-section h2 {
    margin-top: 1.5em;
    color: rgb(161, 165, 215);
  }
  
  /* Footer */
  .main-footer {
    background: rgb(1, 16, 31);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
  }
  .hero-section {
    background-image: url("https://i.pinimg.com/736x/8b/a1/b9/8ba1b946f7889e1efefe4812fddc144e.jpg"); /* sem vložíš svoj obrázok */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
/* Všeobecný štýl pre všetky obrázky */
.content-section img {
  max-width: 200px;
  height: auto;
  margin: 15px;
  border-radius: 4%;
}

/* Obrázky vľavo s obtékaním textu */
img.float-left {
  float: left;
  margin-right: 20px;
  margin-left: 0;
}

/* Obrázky vpravo s obtékaním textu */
img.float-right {
  float: right;
  margin-left: 20px;
  margin-right: 0;
}


