@font-face {
  font-family: 'paladin';
  src: url('FONT/paladinslaser.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'paladinsstraight';
  src: url('FONT/paladinsstraight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'paladin3d';
  src: url('FONT/paladins3d.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  
  background-color: black;
  
}

.about-section{
  position: relative;
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  text-align: center;
  margin-bottom: 60px;
}

.about-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('IMG/aboutBg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  opacity: 50%; /* Adjust the opacity as needed */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  justify-content: center;
  transition: all 1.5s ease-in-out;
}

.content-container:hover{
  transform: scale(1.05);
}

.content-container h1, .content-container h2, .content-container h3 {
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.content-container h1 {
  font-size: 36px;
  font-family: 'paladinsstraight', sans-serif;
}

.content-container h2 {
  font-size: 28px;
  font-family: 'paladinsstraight', sans-serif;
}

.content-container p, .content-container ul {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
}

.content-container ul {
  list-style-type: disc;
  margin-left: 40px;
}

.content-container ul li {
  margin-bottom: 10px;
}

@media (max-width:768px){
  .content-container{
    margin-bottom: 100px;
  }

  .about-section::before{
    width: 100%;
  }
}