body{
   /* background: rgb(236,153,153);
	background: linear-gradient(180deg, rgba(236,153,153,1) 0%, rgba(126,36,45,1) 100%);
	background-attachment: fixed;*/
	/*background: rgba(126,36,45,1);*/
	color: white; 
	overflow: hidden;
	font-family: "Sour Gummy";
	background-image: url(img/plocha1.jpg);
	Background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.container {
   display: flex;
   flex-direction: column;
   align-items: flex-start; 
   gap: 20px; 
}
.random{
    background: white;
    width: 25px; height: 25px;
    position: fixed;
    bottom: 1%; right: 10% ;
}

.bottomBar{
    width: 100vw;
    height: 8vh;
    background-color: rgba(77, 17, 23 ,0.95);
    position: fixed;
    bottom: 0; left: 0;
}

.timeAndDate{
    position: fixed;
    bottom: 1%; right: 2%;
    text-align: right;
    font-size: 0.8rem;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}
.timeAndDate:hover{
    background-color: rgba(255,255,255,0.15);
}
.hledatContainer{
    border: 1px solid rgba(255,255,255, 0.5);
    border-radius: 20px;
    color: white; background: rgba(255,255,255, 0.1);
    position: fixed; bottom: 1%; left: 5%;
    text-align: left;
    font-size: 0.95rem;
    padding: 10px 20px 10px 10px;
    width: 200px;
    cursor: text;
}
.hledatContainer:hover{ background: rgba(255,255,255, 0.25); }
.hledatContainer img{
    width: 20px; height:20px; 
    float: left;
    margin-right: 10px;
}    
.icon{
    width: 50px;
    height: 50px;
}
.miniIcon{
    width: 45px;
    height: 0;
    background-color: white;
    position: fixed;
    bottom: 0; left: 30%;
    z-index: 5;
    transition: height 0.5s ease-out;
    margin: 5px;
}
.miniIcon[data-visible="true"]{
    height: 45px;
}
.krizek{
    cursor: pointer;
    right: 0;
    position: fixed;
    width: 50px; height: 50px;
}
.krizek:hover{
    background-color: rgba(255,255,255,0.15);
}

.topBar{
    width: 850px;
    height: 50px;
    background: rgba(165, 63, 63 ); 
    border-radius: 3.5px 3.5px 0 0;
}
::-webkit-scrollbar {
  width: 13px;
}
::-webkit-scrollbar-thumb{
  background-color: rgba(255,255,255,0.3); 
  border-radius: 10px;
  transition: background-color 0.5s;
}
::-webkit-scrollbar-thumb:hover{
  background-color: rgba(255,255,255,0.7); 
  border-radius: 10px;
  
}

/* ----- o mně ------ */

.aboutMe{
    height: 70px;
    width: 65px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
.aboutMe:hover{background: rgba(255,255,255, 0.15); cursor: pointer;}
 
.bio{
    width: 850px; height: 0;
    background: rgba(239, 127, 127 );
    position: fixed; 
    top: 50vh; left: 50vw; 
    transform: translate(-50%, -50%);
    color: white;
    overflow: hidden;
    z-index: 3;
    transition: height 0.5s ease, transform 0.5s ease;
    border-radius: 5px; border: none;
}
.bio[data-visible="true"]{
    height: 80vh;
    border: 1.5px solid white;
}
.bioContent{
    padding: 20px;
    overflow: auto;   
    max-height: 70vh;
}
/* ----- galerie ------ */
.galleryBtn{
    height: 70px;
    width: 65px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
.galleryBtn:hover{background: rgba(255,255,255, 0.15); cursor: pointer;}
 
.gallery{
    width: 850px; height: 0;
    background: rgba(239, 127, 127 );
    position: fixed; 
    top: 50vh; left: 50vw; 
    transform: translate(-50%, -50%);
    color: white;
    overflow: hidden;
    z-index: 2;
    transition: height 0.5s ease, transform 0.5s ease;
    border-radius: 5px; border: none;
}
.gallery[data-visible="true"]{
    height: 80vh;
    border: 1.5px solid white;
}
.galleryContent{
    padding: 20px;
    overflow: auto;   
    max-height: 70vh;
    text-align: center;
}
.galleryContent img{
      margin: 30px;
	  border: 5px solid white;
	  border-radius: 25px;
	  transition: 0.2s;
	  width: 200px; height: 200px;
}
.galleryContent img:hover{
      border: 5px solid darkred;
	  transform: scale(1.2);
	  border-radius: 35px;
}
.glrIcon {
    background-image: url(img/odr/glr_icon.png);
    background-color: transparent;
    background-size: contain;         /* <- Better than cover */
    background-repeat: no-repeat;
    background-position: center;
}
.gallerySlider{
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gallerySlider img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.gallerySlider .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  padding: 20px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }
/* ----- odkazy ------ */
.odkazyBtn{
    height: 70px;
    width: 65px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
.odkazyBtn:hover{background: rgba(255,255,255, 0.15); cursor: pointer;}
 
.odkazy{
    width: 850px; height: 0;
    background: rgba(239, 127, 127 );
    position: fixed; 
    top: 50vh; left: 50vw; 
    transform: translate(-50%, -50%);
    color: white;
    overflow: hidden;
    z-index: 2;
    transition: height 0.5s ease, transform 0.5s ease;
    border-radius: 5px; border: none;
}
.odkazy[data-visible="true"]{
    height: 80vh;
    border: 1.5px solid white;
}
.odkazyContent{
    padding: 20px;
    overflow: auto;   
    max-height: 70vh;
}
.odkazyContent a{
	 text-decoration:none;
	 color: white;
	 transition: 0.5s;
}
.odkazyContent a:hover{
	 text-decoration:none;
	 color: white;
	 letter-spacing: 0.8px;
	 
}
.odkazyContent ul{
	  font-size: 2rem;
	  margin-top: 25px; 
	  list-style-image: url(img/odr/o1.png);      /*obrazky jako odrazka*/
}
.odkazyContent ul ul{ 
	 font-size: 1.4rem;
	 font-style: italic;
	 margin-top: 5px; 
	 list-style-image: url(img/odr/od1.png);
}