:root {
  --primary-color: rgb(1, 92, 177);
  --secondary-color: rgb(1, 92, 100);
}


*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  background: rgb(121, 175, 226);
  font-family: Arial, Helvetica, sans-serif;
}

/* Utility Classes */
.none {
  display: none;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  color: #333;
  background: transparent;
  opacity: 0.6;
}

button:hover {
  opacity: 1;
}

#poze-content, #docs-content {
  display: none;
}

.show {
  display: flex !important;
}

/* Full screen UC */
.full-screen {
  position: fixed !important;
  /* margin-left: 50%;
  transform: translateX(-50%); */
  max-height: 100vh !important;
  max-width: 100vw !important;
  z-index: 2;
}

/* Main Header */
#main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  padding: 7px;
}

#main-title {
  font-size: 25px;
}

/* Main Navbar MH */
#main-navbar {
  padding-top: 5px ;
}

#main-navbar a:first-child {
  margin-right: 10px;
}

#main-navbar a:nth-child(2) {
  margin-right: 10px;
}

#main-navbar a{
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  border: 2px white solid;
  margin-bottom: 5px;
  border-radius: 12px;
}

#main-navbar a:hover {
  background-color: white;
  color: var(--primary-color);
}


/* Main Showcase */
.main-showcase {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 78vh;
  margin: auto;
}

.main-showcase img {
  max-width: 100%;
  max-height: 80vh;
}

/* Full-screen button MS*/
.fs {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 60%;
  padding: 5px;
  border: solid #fff 1px;
  color: #fff;
  border-radius: 8px;
  /* -webkit-text-stroke: 2px navy; */
 }
 
  /* prv button */
  .prv {
    display: block;
    position: absolute;
    top: 50%;
    left: 2vw;
    width: 100px;
    color: #fff;
  }

  /* next button */
  .next {
    display: block;
    position: absolute;
    top: 50%;
    right: 2vw;
    width: 100px;
    color: #fff;
  }





@media(max-width:878px) {
  /* Main Header */
  #main-header {
    flex-direction: column;
  }

  #main-title {
    text-align: center;
    font-size: 20px;
  }

  /* Main navbar MH */
  #main-navbar a:first-child {
    margin-right: 12px;
  }

  /* Main Showcase */
  .fs {
    left: 66%;
  }
  
}


@media(max-width: 600px ) {
  /* Main showcase */
  .main-showcase {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  /* full-screen button */
  .fs {
   position: static;
   opacity: 1;
  }

  /* prv button */
  .prv {
    top: 95%;
  }

  /* next button */
  .next {
    top: 95%;
  }
}

@media(max-width: 470px) {
  /* prv button */
  .prv {
    top: 80%;
  }

  /* next button */
  .next {
    top: 80%;
  }
}


@media(max-width: 300px) {
  /* Main navbar MH*/
  #main-navbar a{
    margin-left: 50%;
    transform: translate(-50%);
  }

  /* Main showcase */
  .main-showcase {
    height: 60vh;
  }
}

/* Height media query */
@media(max-height: 400px) {
  /* Main showcase */
  .main-showcase {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  /* full-screen button */
  .fs {
   position: absolute;
   opacity: 1;
   top: 10px;
   left: 50%;
   transform: translateX(-50%);
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   -moz-transform: translateX(-50%);
  }

  /* prv button */
  .prv {
    top: 50%;
  }

  /* next button */
  .next{
    top: 50%;
  }
}