@font-face {
	font-family: 'Roboto Mono';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/robotomono-regular.woff2') format('woff2');
}

.wrapper {
    padding-top: 10%;
    margin: 0 auto;
}

.inner-wrapper {
    display: flex;
    padding: 8px;
}

.body-text {
    margin: 0 auto;
    font: 400 14px/24px 'Roboto Mono', monospace;
    text-align: center;
}

.name {
	display: inline-block;
}

.social {
    width: auto;
    max-width: 20px;
    text-align: center;
    padding-right: 20px;
    padding-left: 10px;
    height: auto;
    float: right;
}

.name {
    width : 160px;
}

.links-section {
    align-content: space-between;
    text-align: left;
}

.link {
    margin-left:20px;
    align-content: center;
    max-width: 150px;
}
a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px; /* Set a maximum width for the grid */
    margin: 0 auto; /* Center the grid */
}

.photo-grid div {
    width: 100%;
    padding-top: 150%; /* 2:3 Aspect Ratio */
    position: relative;
}

.photo-grid img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }
}
