body {
	min-width: 360px;
}

.profile-image img {
    max-width: 100%; /* Ensure the image does not exceed its container width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5%; /* Make the image round */
    display: block; /* Remove any default inline spacing */
    margin: 0 auto; /* Center align the image horizontally */
    max-height: 300px; /* Limit the maximum height of the image */
}

.about-me {
    padding: 20px 0; /* Adjust padding as needed */
    text-align: center;
    max-width: 80%; /* Limit the maximum width of the about section */
    margin: auto; /* Center align the section */
}

.about-content {
    margin-top: 20px; /* Add margin for separation */
}

.description {
    text-align: left; /* Adjust text alignment */
}

.about-title {
    font-family: 'Dungeon Crawler CB';
    font-size: 2.5rem; /* Adjust as needed */
    color: #333; /* Example color for the title */
}

.about-text {
    font-family: 'Calibri', 'Trebuchet MS', sans-serif, Arial, sans-serif; /* Fallback fonts */
    font-size: 1.4rem; /* Adjust as needed */
    line-height: 1.6; /* Adjust line height for readability */
    color: #555; /* Example color for the text */
    margin-top: 5%;
    font-weight: 400;
}

.about-final {
    font-family: 'Calibri', 'Trebuchet MS', sans-serif, Arial, sans-serif; /* Fallback fonts */
    font-size: 1.4rem; /* Adjust as needed */
    line-height: 1.6; /* Adjust line height for readability */
    color: #555; /* Example color for the text */
    margin-top: 5%;
    font-weight: 400;
}

.profile-image {
    text-align: center; /* Center align the image horizontally */
    margin-top: 3%;
}

.profile-image img {
    max-width: 90%; /* Ensure the image does not exceed its container width */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure block-level properties */
    max-height: 350px; /* Limit the maximum height of the image */
    border-radius: 0%;
    border-width: 3pt;
}

.image-caption {
    font-size: 20px;
    font-weight: 100;
    font-family: 'Calibri', 'Trebuchet MS', sans-serif, Arial, sans-serif; /* Fallback fonts */
    color: black;
    background-color: transparent;
    text-align: center;
}

.image-gallery {
    margin-bottom: 1%;
}

.gallery-grid {
    background-color: black;
}

.social-icons {
    display: inline-block;
}

.icon-link {
    display: inline-block;
    margin: 0 10px; /* Adjust spacing between icons */
}

.icon-link img {
    width: 55px; /* Adjust icon size as needed */
    height: auto;
}

.icon-link {
    display: inline-block;
    margin: 0 10px; /* Adjust spacing between icons */
    position: relative;
    overflow: hidden; /* Ensure the glow effect does not overflow */
}

.icon-link img {
    width: 55px; /* Adjust icon size as needed */
    height: auto;
    border-radius: 50%; /* Ensure the image is round */
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
    display: block; /* Ensure block-level properties */
}

.icon-link:hover img {
    transform: scale(1.1); /* Scale up the icon on hover */
    filter: brightness(120%); /* Increase brightness on hover */
    z-index: 1; /* Ensure hovered icon is on top of others */
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: rgb(91, 93, 94); /* Adjust opacity and color as needed */
    box-shadow: 0 0 0px 10px rgba(12, 12, 12, 0); /* Adjust spread and color as needed */
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.icon-link:hover::before {
    opacity: 1; /* Show the glow effect on hover */
}

@media (max-width: 768px) {
    .about-title {
        text-align: center; /* Center align for mobile devices */
    }
}