
html body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.imgContainer {
    width: 100%;
  height: 100vh; /* wysokość całego ekranu */
  overflow: hidden;
}

.my {
width: 100%;
  height: 100%;
  object-fit: cover;      /* wypełnia ekran */
  object-position: center; 
}

.bg {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.36);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.9px);
    -webkit-backdrop-filter: blur(1.9px);
    text-align: center;
    padding-top: 20vh;
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: italic;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    overflow: hidden;
}

.date {
    font-size: 10rem;

}