/* Resetting some defaults so we can define things manually */

body,
h1,
p {
  margin: 0;
}
h1{
  line-height: 70px;
}
body{
  background-color: black;
}

header {
  background-color: #5c2d2d;
  text-align: center;
  color: #fbeec1;
  height: 70px;
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Add padding to the header for spacing */
}


.wrapper {
  display: flex; /* Allows us to position things inside this div with more freedom, see https://css-tricks.com/snippets/css/a-guide-to-flexbox/ for more details*/
  flex-grow: 1; /* The div will now grow to fill the available space */
  min-height: calc(100vh - 150px);
}

.left-column {
  flex: 1; /* in tandem with other flex values in the parent div tells us how much space will be taken up by this column, in this situation 1/3*/
  color: #bc986a;
  display: flex;
  /* Position things vertically in the centre */
  align-items: center;
  /* Position things horizontally in the centre */
  justify-content: center;
}


.left-column-content {
  max-height: calc(100vh - 150px);
  overflow: auto;
}

left-column-content::-webkit-scrollbar {
  width: 0; /* Hide the scrollbar's width */
  height: 0; /* Hide the scrollbar's height */
}

.right-column {
  flex: 1.2; /* in tandem with the flex:1 on left-column, means this will take up 2/3 of the available space*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.verse {
  font-size: 25.5px;
  list-style-type: none;
  padding-top: 70px;
  padding-bottom: 30px;
  font-weight: 100;
  color: #ddd;
  line-height: 2.7;
}

#svg{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 50px;
}

g{
  fill: #cb4335;
}

table{
  text-align: center;
  margin: 100px auto;
}

#table1{
  font-size:20px;
  color: white;
}

#table1 th{
  margin-top: 30px;
  background-color:#dd7555;
  padding: 15px 30px;
  color: black;
}

#table1 td{
  background-color: #f3d1c7;
  padding: 15px 30px;
  color: black;
}

#table2{
  text-align: center;
  margin: 100px auto;
  color: white;
}

#table2 th{
  padding: 8px 30px;
    line-height: 20px;
    background-color: black;
    font-size:13.7px;
  border-bottom: #b92b2b solid 1px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px;
}

#table2 td{
  padding: 8px 30px;
  line-height: 20px;
  background-color: black;
  font-size:13.7px;
  border-top: #b92b2b solid 1px;
  padding-top: 15px;
}

rect{
  stroke-width: 1px;
}

.pie-label{
  font-size: 25px;
  font-weight: bold;
  fill: black;
  text-anchor: middle;
  font-family:fantasy;
}

caption{
  font-weight: bold;
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
}

.inner-title{
  font-weight: bold;
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

footer {
  position: fixed; /*force the footer to not move regardless of what else is going on on the page*/
  bottom: 0; /* Make sure it stays at the bottom of the page */
  display: flex; /*need this to be a flex to work with justify-content/align-items*/
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
}

.arrow-button {
  font-size: 10px;
  padding: 2px 10px;
  margin: 0 10px;
  height: 25px;
}


.active-line {
  color:#fbdede;
  text-shadow: 5px 5px 5px #ff0000; 
}

.dropdown {
  position: relative;
  display: inline-block;
  float: right; /* Float the container to the right */
  margin-right: 20px; /* Add some margin for spacing */
}

/* Styles for the dropdown button */
.dropdown .btn {
  color: #5c2d2d;
  background-color: #fbeec1;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* Styles for the dropdown content (hidden by default) */
.dropdown .content {
  display: none;
  position: absolute;
  min-width: 527px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  font-size: 20px;
  z-index: 1;
}

/* Styles for the dropdown links */
.dropdown .content a {
  color: #5c2d2d;
  background-color: #fbeec1;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change the background color of links on hover */
.dropdown .content a:hover {
  background-color: #dd7555;
  color: white;
}


