


/* ------------------------------------- Begin "List of contents" ------------------------------------- */



/*
  1. article
  2. body html
  3. header
  4. img video
  5. p h2
  6. section
  7. rwd
*/


/* -------------------------------------- End "List of contents" -------------------------------------- */




/* ------------------------------------------ Begin "article" ----------------------------------------- */

article {
  padding: 100px 0; 
}


/* ------------------------------------------- End "article" ------------------------------------------ */




/* ----------------------------------------- Begin "body html" ---------------------------------------- */

html {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

body {
  margin: 0;
  padding: 1px 0;
  background-color: #f5f5f5;

  font-size:18px;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.5;
  color: #444;

}


/* ------------------------------------------ End "body html" ----------------------------------------- */




/* ------------------------------------------ Begin "header" ------------------------------------------ */

header {
  width: 100%;


  background: #fff;

background-image: url('https://nulina.life/user/public/template/pasek.svg');
background-repeat: no-repeat;
background-position: bottom;  
background-size: 100% 5px;
}


header
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.7s; /* płynne przesuwanie */
  padding: 10px;
  box-sizing: border-box;
}

header.is-hidden
{
  transform: translateY(calc(-100% - 40px));
}


header div
{
  display: flex;              /* Ustawienie flexboxa */
  justify-content: space-between; /* Elementy na dwóch końcach */
  align-items: center;        /* Wyrównanie w pionie */
  padding: 10px;         /* Odstępy wewnętrzne dla estetyki */
  background-color: #fff;     /* Możesz zmienić tło nagłówka */
box-sizing: border-box;
}

header img
{
  height: 50px; 
}


@media only screen and (max-width: 600px) {
	header img {
       height: 30px;     
  }
}




/* ------------------------------------------- End "header" ------------------------------------------- */




/* ----------------------------------------- Begin "img video" ---------------------------------------- */

article img,
article video {
  max-width: 100%;
  max-height: 100vh;
  display: block;
  margin: 0 auto;
}


/* ------------------------------------------ End "img video" ----------------------------------------- */




/* ------------------------------------------- Begin "p h2" ------------------------------------------- */

p {
  font-size: 18px;
  margin: 10px 0;
}

h2 {
  font-size: 23px; 
  margin: 20px 0 0 0;
}

.toggle {
  font-weight:bold;
  text-decoration: underline;
  cursor: pointer;
}

article a


{
  word-break: break-word;  /* stara metoda */
  overflow-wrap: break-word; /* nowa, lepsza */
}


/* -------------------------------------------- End "p h2" -------------------------------------------- */




/* ------------------------------------------ Begin "section" ----------------------------------------- */

section {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}




/* ------------------------------------------- End "section" ------------------------------------------ */




/* -------------------------------------------- Begin "rwd" ------------------------------------------- */

@media only screen and (max-width: 800px) {
  body {
    background: #fff; 
  }
  section {
 	margin: 3px auto;
	border-radius: 0;    
    border-bottom: 3px solid #ccc;
  }
}


/* --------------------------------------------- End "rwd" -------------------------------------------- */

