.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}


/* General font settings */
body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    font-family: "Space Mono", serif;
    font-optical-sizing: auto;
}

/* Main Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Container */
.header-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0;
}

.description-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px; /* Gap between image and text */
    width: 1200px;
    margin: 20px auto; /* Center the container */
}

/* Image in Description */
.description-image {
    flex-shrink: 0; /* Prevent the image from shrinking */
    width: 500px;
    height: 500px;
    object-fit: cover; /* Ensure the image retains its aspect ratio and covers the area */
    border: 1px solid #ccc; /* Optional: Add a border for styling */
}




/* General Styling for Description Paragraphs */
.description-paragraph {
    margin-bottom: 20px; /* Add spacing between paragraphs */
    line-height: 1.6; /* Improve readability */
}

/* Large Text */
.large-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

/* Medium Text */
.medium-text {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

/* Small Text */
.small-text {
    font-size: 16px;
    font-weight: 400;
    color: #777;
}



/* Name Button (Back) */
.name-button {
    font-family: "Space Mono", serif;
    font-size: 24px;
    font-weight: 900;
    color: black;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid black;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;

}

/* Main Image and Title */
.main-photo {
    position: relative;
    max-width: 1600px;
    margin: 20px auto;
}

.main-photo-image {
    width: 100%; /* Resize the image to fill the width of the container */
    max-width: 1600px; /* Prevent the image from exceeding 1200px width */
    height: 400px; /* Maintain the height of 400px */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

.main-title {
	font-family: "Space Mono", serif;
	font-weight: 600;
    position: absolute;
    bottom: 0px;
    left: 190px;
    width: 100%;
    color: white;
    font-size: 44px;
    padding: 10px;
    text-align: left;
}
/* Left Text (Below Title) */
.left-text {
    font-family: "DejaVu Sans Mono", Courier, monospace;
    font-weight: 400;
    position: absolute;
    bottom: 20px; /* Adjust to position below the title */
    left: 190px; /* Match the margin of the title */
    color: white;
    font-size: 16px;
    text-align: left;
    padding: 5px;
}

/* Right Text */
.right-text {
    font-family: "DejaVu Sans Mono", Courier, monospace;
    font-weight: 800;
    position: absolute;
    bottom: 40px; /* Adjust as needed */
    right: 180px; /* Place it on the right side */
    color: white;
    font-size: 22px;
    text-align: right;
    padding: 5px;
}

/* Description Section */
.description {
    width: 1200px;
    margin: 0px auto;
    font-size: 16px;
    text-align: left;
    color: #333;
}

/* Video Links */
.video-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Masonry Gallery */
.masonry {
    column-count: 3;
    column-gap: 20px; /* Add 20px gap between columns */
    margin: 0px auto;
    max-width: 1200px;
}

.masonry .mItem {
    display: block; /* Ensure block behavior for items */
    margin-bottom: 20px; /* Add 20px gap between rows */
    width: 100%;
}

.masonry img {
    width: 100%;
    display: block; /* Ensure images take up the full width of their container */
}

/* Remove any whitespace between inline-block elements */
.masonry {
    font-size: 0; /* Removes the spaces between inline-block elements */
}

.masonry .mItem {
    font-size: 0; /* Reset font size for the items */
}

@media (max-width: 1199px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .masonry {
        column-count: 1;
    }
}

