/* Global Styles */


*{box-sizing: border-box;}
  
body {
  background-color: #2c2b2a;
  color: #f7f6f2;
  font-family: 'Lucida Sans Unicode', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

p {
  margin: 0;
}

ul {
list-style: none;
margin: 0;
padding: 0;
}

a {
color: #f7f6f2;
text-decoration: none;
}

a:hover {
color: #d9d8d4;
}

header {
background-color: #a75a3c;
padding: 1rem;
text-align: center;
}

nav {
background-color: #2c2b2a;
padding: 1rem;
}

nav ul {
display: flex;
justify-content: space-around;
}

nav li {
margin: 0 1rem;
}

main {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 1rem;
}

.introduction p{
  margin-bottom: 20px;
}

.introduction {
  /* your existing styles for the introduction section */
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

/* styles for the disclaimer section within the introduction */
.disclaimer-box {
  background-color: #3b3d33;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-sizing: border-box;
}

.disclaimer {
  background-color: #3b3d33;
  color: #f7f6f2;
  font-family: 'Lucida Sans Unicode', sans-serif;
  font-size: 18px;
  margin: 0;
}

.disclaimer a {
  color: #f7f6f2;
  text-decoration: underline;
}

/* .disclaimer-subtext {
  font-size: 14px;
  margin-top: 10px;
} */


.char-section {
width: 100%;
max-width: 1600px;

display: grid;
grid-template-columns: repeat(3, minmax(280px, 1fr));
grid-gap: 20px;
}

.char-card {
background-color: #46362c;
border-radius: 0.5rem;
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
margin: 0 auto 1rem;
overflow: hidden;
width: 100%;
max-width: 600px;
text-align: center;
}

.char-card img {
max-width: 75%;
height: auto;
margin-bottom: 20px;
}

.char-card h2 {
background-color: #b5b5b5;
color: #1d1d1d;
font-size: 1.5rem;
padding: 0.5rem;
text-align: center;
}

.char-card p {
color: #f0f0f0;
padding: 1rem;
}

.char-card button {
background-color: #b5b5b5;
border: none;
border-radius: 0.25rem;
color: #1d1d1d;
cursor: pointer;
display: block;
font-size: 1rem;
margin: 1rem auto;
padding: 0.5rem;
transition: background-color 0.3s ease;
width: 80%;
}

.char-card button:hover {
background-color: #7f7f7f;
}

footer {
  background-color: #3b3d33;
  color: #f2d6a5;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #f2d6a5;
  text-decoration: none;
}

footer a:hover {
  color: #a7854c;
}
