* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend Exa', sans-serif;
}

body {
    background-color: #1b1b1b;
    color: #d5c8af;
}

.header {
    background-color: #212121;
    color: #f8b700;
    padding: 20px;
    text-align: center;
}

.header h2 {
    font-family: 'Acme', sans-serif;
    font-size: 2em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
    color: #d5c8af;
}

.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.lore-section, .stat-section, .alignment-section {
    margin-bottom: 30px;
}

.lore-section h3, .stat-section h3, .alignment-section h3 {
    color: #f8b700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.lore-text, .alignment-section p, .stat-section p {
    color: #d5c8af;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.text-1 {
    flex: 1 1 calc(25% - 20px);
    background-color: #292929;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.text-1:hover {
    transform: scale(1.05);
}

.text-content img {
    margin-bottom: 10px;
    width: 100px; /* Set a fixed width */
    height: 100px; /* Set a fixed height */
    object-fit: cover; /* Ensures images fill the space without distortion */
    border-radius: 8px; /* Optional: adds rounded corners to images */
}

.text-details h3 {
    font-family: 'Acme', sans-serif;
    font-size: 1.2em;
    color: #f8b700;
    margin-bottom: 5px;
}

.text-details p {
    font-size: 0.9em;
    color: #d5c8af;
}

.alignment-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.alignment-section .text-1 {
    padding: 15px;
}

.alignment-section .text-content h3 {
    font-size: 1.4em;
    color: #f8b700;
    margin-bottom: 8px;
}

.alignment-section .text-content p {
    font-size: 0.9em;
}

a {
    text-decoration: none;
  }
  


.subtext {
    text-align: right;
}