/*
Globální
*/
:root {
  --mainColor: #1A1A1D;
  --secondColor: #c9ff83;
  --thirdColor: #000000;
  /*
  --mainColor: #03045E;
  --secondColor: #CAF0F8;
*/
  --topShadow:inset 0px 25vh 15vh -30px var(--mainColor);
  --bottomShadow:inset 0px -25vh 15vh -30px var(--mainColor);
}
body {
  /*
  Font
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  */
  font-family: 'Bitter', serif;
  font-family: 'Source Code Pro', monospace;
  margin: 0;
  background-color: var(--mainColor);
  color: var(--mainColor);
}
.naStred {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.textCenter {
  text-align: center;
}
h1{
  text-transform: uppercase;
  letter-spacing: 7px;
}
ol {
  list-style-type: none;
}
/*
Header
*/
header {
  height: 120vh;
  background-color: var(--secondColor);
  box-shadow: var(--bottomShadow);
  background: var(--mainColor) url("hraObrazky/ostatni/pozadi.png") center center/cover no-repeat;
}
header div{
  text-align: center;
  width: 100%;
  font-size: 3rem;
  text-shadow: 0px 0px 30px var(--mainColor);
  position: relative;
  bottom: 10vh;
  /*animation: headerText 1.5s both 2s;*/
}
header div .imageHeader {
  position: absolute;
  
}
header div .imageHeader img{
  z-index: 3;
  top: 0;
}
header div .imageHeader .img01{
  transform: rotate(-35deg);
  animation: headerIMG 1.5s both 0.5s;
}
header div .imageHeader .img02{
  transform: scale(1.3);
  animation: headerIMG 1.5s both;
}
header div .imageHeader .img03{
  transform: rotate(35deg);
  animation: headerIMG 1.5s both 0.7s;
}
header div h1,
header div h4 {
  position: relative;
  animation: headerText 1.5s both 1.2s;
  z-index: 80;
}
@keyframes headerText {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1% {
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes headerIMG {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1% {
    transform: scale(0.2);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

/*
Section
*/
section {
  padding: 7% 0% 7% 0%;
}

/*
Section INFO
*/
.info {
  margin: auto;
  flex-direction: row;
  flex-wrap: wrap;
  width: 70%;
  color: var(--secondColor);
}
.info h1 {
  font-size: 3rem;
}
.info .vlevo,
.info .vpravo {
  width: 50%;
}
.info .vpravo {
  text-align: left;
}

/*
Section Komentare
*/
.komentare {
  box-shadow: var(--topShadow);
  background-color: var(--secondColor);
  padding-top: 20%;
  width: 100%;
}
.komentare h1 {
  font-size: 3rem;
}
.komentare .komentareContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin: 3% 0px;
}
.komentare .komentareContainer p {
  font-style: italic;
  padding: 0% 1%;
}
.komentare .komentareContainer p span {
  font-style: normal;
  font-size: 1.5em;
}
.komentare form input[type=text], textarea {
  font-size: 1.3em;
  background: none;
  border: 0;
  padding: 3px 0px;
  margin: 10px 0px;
  border-bottom: 2px solid var(--mainColor);
  text-align: center;
  color: var(--mainColor);
}
.komentare form input[type=text]:focus, textarea:focus {
  outline: none;
}
input::placeholder{
  color: var(--mainColor);
  opacity: 0.7;
}
input:focus::placeholder {
  color: transparent;
}
#inputJmeno {
  width: 50%;
}
.komentare .stylButton {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  font-size: 1.1em;
  padding: 7px 15px;
  cursor: pointer;
  border-radius: 8px;
  color: var(--mainColor);
}
.komentare .stylButton:hover {
  box-shadow: 0px 0px 15px 10px var(--mainColor);
  background-color: var(--mainColor);
  color: var(--secondColor);
  transition: 0.6s ease;
}
/*
Secion spustitHru
*/
.spustitHru{
  box-shadow: var(--bottomShadow);
  background-color: var(--secondColor);
  padding: 10% 0% 25% 0%;
}
.spustitHru h1 {
  font-size: 3rem;
}
.spustitHru .container {
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.spustitHru .container .vlevo,
.spustitHru .container .vpravo {
  width: 50%;
}
.spustitHru .container .vlevo {
  text-align: right;
}
.spustitHru .container .vpravo {
  position: relative;
}
.spustitHru .container .vpravo a img {
  filter: drop-shadow(0px 0px 10px var(--mainColor))
  drop-shadow(0px 0px 10px var(--mainColor));
}
.spustitHru .container .vpravo a:hover img {
  filter: drop-shadow(0px 0px 12px var(--thirdColor))
  drop-shadow(0px 0px 12px var(--thirdColor));
  transform: scale(1.1);
  transition: 1s ease;
}
.spustitHru .container .vpravo a .textSpustitHru {
  text-transform: uppercase;
  display: none;
  position: absolute;
  top: 47%;
  left: 2%;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  text-shadow: 0px 0px 30px black,
  0px 0px 30px black,0px 0px 30px black;
}
.spustitHru .container .vpravo a:hover .textSpustitHru{
  animation: headerText 1s both;
  display: block;
}
/*
Footer
*/
footer {
  font-size: 1.5em;
  color: var(--secondColor);
  background-color: var(--mainColor);
  text-align: right;
}
footer p {
  margin-right: 5%;
}

/*
ScrollBar
*/
/* width */
::-webkit-scrollbar {
  width: 10px;
  background-color: grey;
}
  
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
   
/* Handle */
::-webkit-scrollbar-thumb {
  background: black; 
  border-radius: 10px;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(48, 48, 48); 
}
/*
Responzivita
*/
@media screen and (max-width: 700px) {
  :root {
    --topShadow:none;
    --bottomShadow:none;
  }
  header div {
      width: 100%;
      font-size: 2.5rem;
  }
  .info {
    width: 100%;
  }
  .info .vlevo,
  .info .vpravo {
    width: 100%;
  }
  .info .vpravo {
    width: 90%;
    padding: 0 5%;
  }
  .info .vpravo h1 {
    text-align: center;
    font-size: 2.6rem;
  }
  .spustitHru .container .vlevo,
  .spustitHru .container .vpravo {
    text-align: center;
    margin: auto;
    width: 100%;
  }
  footer {
    text-align: center;
  }
  footer p {
    margin-right: 0%;
  }
  header div .imageHeader .img01{
    display: none;
  }
  header div .imageHeader .img02{
    display: none;
  }
}
