/*
   Filename:  abcs.css
   Author:    John G. (Skip) Todora
   Date:      September 27, 2022
   updated:   November 05, 2025 to make the page cellphone friendly
   Website:   jtodora.com
*/

.bg-grad {
   background-color: #E5E5E5;
   background-image: linear-gradient(#E5E5E5, #66C4FF);  
}  /* #1E90FF #1EB3FF #66C4FF */

button {
    margin: auto;
    display: flex;
}

a {
	text-decoration: none;
}

a:link, a:visited {
	color: blue;
}

a:hover {
	color: red;
}

.column {
   float: left;
   width: 33.33%;
   padding: 10px;
}

.row:after {
   content: "";
   display: table;
   clear: both;
}

.red-letter-big {
	color: red;
	font-size: 200%;
}

.green-letter-big {
	color: green;
	font-size: 200%;
}

.yellow-text-modified {
	color: #CBB500;
}

.yellow-letter-big {
	color: #CBB500;
	font-size: 200%;
}

.right-img {
   display: block;
   margin: auto;
   padding-top: 90px;
   width: 100%;
}

.left-img {
   display: block;
   margin: auto;
   padding-top: 40px;
   width: 100%
}

.return-home {
   text-align: center;
   padding-top: 15px;
   padding-bottom: 15px;
}

/*
.verse {
    display: flex;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}
*/

/* ***************** ADDED for Bible versus ******************************** */
.verse-row {
  margin: auto;
}

/* Create four equal columns that floats next to each other */
.verse-column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */ 
.verse-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.verse-content {
  padding: 5px;
}

.verse-text {
    padding-bottom: 10px;
}

.display-text-btn {
  position: relative;
  padding: 5px;
  background-color: #154264;
  color: white;
  font-weight: bold;
  margin: auto;
  margin-bottom: 10px;
}

.close-text-btn {
  position: relative;
  padding: 5px;
  background-color: #154264;
  color: white;
  font-weight: bold;
  margin: auto;
  margin-bottom: 10px;
}


/* THIS IS FOR THE BUTTON CONTROL TO DISPLAY PHOTO TEXT */
.popup {
  /* position: fixed; */
  position: relative;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  display: none;
}

.popup-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888888;
  width: 100%;
}

.popup-content button {
  display: block;
  margin: 0 auto;
}

/* Needed to display the popup content */
.show {
  display: block;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .verse-column {
    width: 50%;
  }
}
/* **************** END for Bible versus ************************************ */
