﻿.btn-thin {
    padding: 1px 6px;
    font-size: 14px;
}

.container-centered {
    display: flex; /* or inline-flex if you want to keep it inline */
    align-items: center; /* vertically center */
    justify-content: center; /* horizontally center */
    max-width: 100%;
}

.centered {
    max-width: 100%;
}

.container-title-image {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.title-image {
    width: 100%;
    max-width: 800px; /* Adjust to your desired maximum size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image on larger screens, optional */
    border-radius: 10px;
}

/* Optional: Add a smaller max-width for mobile devices */
@media (max-width: 768px) {
    .title-image {
        max-width: 85%; /* Full width for smaller screens */
    }
}

.WikiH1{
    text-align:center;
}

.basic-gallery {
    display: inline-flex;
    flex-wrap: wrap;
}

.container-gallery-image {
    width: 50%;
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image on larger screens, optional */
    padding: 5px;
    text-align: center;
}

.gallery-image {
    max-width: 500px; /* Adjust to your desired maximum size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image on larger screens, optional */
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

/* Optional: Add a smaller max-width for mobile devices */
@media (max-width: 768px) {
    .gallery-image {
        max-width: 100%; /* Full width for smaller screens */
    }
}

.container-emoji-tag
{
    width: 100%;
    text-align: center;
}

.emoji-tag{
    max-height:40px;
    width:auto;
}