@import url(/css/style/variables.css);


.history-header-content {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 1055px;
    background-image: url(/Images/library.jpg);
    background-size: cover;
    background-position: center;
}

main {
    background-color: var(--primary-background-colour);
    font-family: 'Changa', sans-serif;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: auto;
    overflow-x: hidden;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
  }
  
  .container-reverse {
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
  }
  
  .text-bubble {
    background-color: var(--primary-orange-colour);
    border-radius: 20px;
    padding: 15px 20px;
    margin: 100px;
    color: var(--primary-colour);
    max-width: 40%;
  }

.big-bone-h1,
.elephant-h1,
.speach-h1 {
  text-align: center;
  padding: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-shadow: var(--secoundary-box-shadow);
}

.speach-p1,
.big-bone-p1,
.elephant-p1 {
  color: var(--secoundary-colour);
  text-align: center;
  line-height: 1.6;
  padding: 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

h2 {
    background-color: var(--primary-orange-colour);
    border-radius: var(--secoundary-border-radius);
    padding: 1rem 1.5rem;
    color: var(--primary-colour);
    max-width: 90%;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--secoundary-orange-colour);
    text-shadow: var(--secoundary-box-shadow);
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin: 1rem auto;
}

p2 {
    background-color: var(--primary-orange-colour);
    border-radius: var(--secoundary-border-radius);
    padding: 1rem 1.5rem;
    color: var(--secoundary-colour);
    max-width: 90%;
    text-align: center;
    line-height: 1.6;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin: 0.5rem auto;
    display: block;
}
  
  .image-container img {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: var(--primary-border-radius);
    display: block;
    margin: 0 auto;
  }
  
  .speach-image,
  .elephant-image,
  .big-bone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--primary-border-radius);
  }

  .line {
    height: 1.4px;
    width: 100%;
    background-color: var(--primary-button-colour);
    box-shadow: var(--secoundary-box-shadow);
    margin: 0 auto;
  }

  .space-button {
    position: relative;
    width: clamp(200px, 12vw, 10px);
    height: 45px;
    background-color: var(--primary-blue-color);
    box-shadow: 1px 1.5vw 100px var(--primary-blue-color);
    border-radius: var(--primary-border-radius);
  }

  .button-frame {
    margin: 20px;
    padding: 10px;
    width: clamp(200px, 12vw, 10px);
  }

  .space-button:hover{
  transform: scale(1.5);
}