
/*
* Globals
*/


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
}


/*
* Base structure
*/

body {
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
}

/* Style the scrollbar track (part that the thumb slides within) */
::-webkit-scrollbar {
  width: 16px; /* Width of the scrollbar */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px; /* Rounded corners */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background: #4c631a;
}

.cover-container {
max-width: 42em;
}


/*
* Header
*/

.nav-masthead .nav-link {
color: rgba(255, 255, 255, .5);
border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}

.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}

header {
  display: flex;
  justify-content: space-between; /* Space between left and right items */
  align-items: center; /* Center items vertically */
  padding: 0 20px; /* Horizontal padding for spacing */
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.header-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header-left {
  margin-right: 325px; /* Space between h3 and nav */
}


/* body */
body {
position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('content/poetry.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Ensures the background stays behind all content */
}

.container {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
}

h1 {
 margin-top: 50px;
 text-align: center;
}

.pdf-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    flex-direction: column;
}

.pdf {
    width: 100%;
    max-width: 800px;
    height: 1050px;
}


footer {
  margin-top: 3rem;
}

.pdf-download {
  display: none;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.pdf-download:hover {
  background-color: #222;
  color: white;
}

@media (max-width: 768px) {
  .header-left {
    float: none;
    text-align: center;
    margin-right: 0;
  }
  .pdf {
    display: none;
  }
  .pdf-download {
    display: block;
    margin-top: 20px;
    text-align: center;
  }
}
