/* Stylesheet 1: */
.red {
  color: red;
  font-weight: 600;
}

/* Stylesheet 2: */
.gold {
  color: #ff9900 ;
  text-shadow: 2px -1px 1px #000000;
  filter: drop-shadow(2px 2px 4px #706e6a);
}

/* Stylesheet 3: */
.goldbg {
  color: #000000;
  background-color:#ff9900;
  border-radius: 9px;
  text-shadow: 0px 0px 0.7px #000000;
  f-filter: drop-shadow(1px 1px 2px #000000);
}

body {
  margin:0;
  font-family:Arial;
  background-image: url(Screenshot_biblia_tlo_bluish_50.png);
  bbackground-image: radial-gradient(#60d0fc, #9bcada);
  background-repeat: no-repeat;
  background-size: cover;}

sup {
  font-size:65%;
}

.container {
  width: 60%;
  margin: auto; 
  padding: 40px 0 0 0;
}

.fixed-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: #d3d3d4;
  box-sizing: border-box;
  z-index: 9999;
  text-align: center;
}

.text-box {
  display: inline-block;
  height: 800px;
 /* było width: 40%; */ 
  padding: 20px 20px 20px 40px;
  text-align: left;
  font-size:18px;
  background-color: #c4e1ed;
  overflow-y: scroll;
  border-radius: 25px;
  /* shadow around */
  bbox-shadow: 0 0 10px 5px #4e4e4e;
  box-shadow: 10px 10px 5px #4e4e4e;
 }

/* Hide scrollbar for Chrome, Safari and Opera */
 .text-box::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
 .text-box {
 -ms-overflow-style: none; /* IE and Edge */
 scrollbar-width: none; /* Firefox */
 }

@import url(https://fonts.googleapis.com/css?family=Fjalla+One);
* {
  box-sizing: border-box;
}

.pop {
  position: absolute;
  width: 50%;
  margin: auto;
  padding: 20px;
  height: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 640px) {
  .pop {
    position: relative;
    width: 100%;
  }
}
.pop .modal {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.pop .modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
  top: 50%;
  left: 50%;
  width: 50%;
  background: white;
  padding: 30px;
  position: absolute;
  color: black;
}

/* Close Button */
.btn-close{
    color: #fff;
    text-align: center;
}



@media (max-width: 640px) {
  .pop .modal__inner {
    width: 100%;
  }
}
.pop label {
  display: inline-block;
  cursor: pointer;
}
.pop label.open {
  color: turquoise;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  text-decoration: underline;
}
.pop label.open:hover {
  color: paleturquoise;
}
.pop input {
  display: none;
}
.pop input:checked + .modal {
  opacity: 1;
  visibility: visible;
}
.pop input:checked + .modal .modal__inner {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.pop input:checked + .modal .modal__inner p {
  font-size: 1.25rem;
  line-height: 125%;
}
.pop input:checked + .modal label {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  background: #666666;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.pop input:checked + .modal label:hover {
  background: #333333;
}

.topnav {
  overflow: hidden;
  background-color: #1177ca;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #0a5b9e;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
