<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
}

.page {
    display: flex;
    margin-top: 70px;
}

#homepage {
    background-color: white;
    height: auto; 
    overflow-y: auto;
}

.header {
    position: fixed;
    top: 0; 
    background-color: #f2f2f2;
    padding: 1rem;
    width: 100%;
    height: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-header {
    display: flex;
    align-items: center;
    text-align: left;
    margin-left: auto;
    font-family: 'Inter';
    font-weight: 500;
    color: #000000;
    font-size: 1.3rem;
    margin-left: 1.5rem;
}

.header-box:first-child {
    margin-right: 2rem;
}

.header-box:last-child {
    margin-left: 2rem;
}

.header-box a {
    text-decoration: none;
    color: inherit;
}

.header-box a:hover {
    color: #404040;
}

.header-box:hover {
    filter: brightness(2);
    cursor: pointer;
}

.right-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.linkedin img,
.mail img {
    max-height: 1.3rem;
    width: auto;
    vertical-align: middle;
    margin-right: 1.5rem;
}

.linkedin img:hover,
.mail img:hover {
    filter: brightness(2);
    cursor: pointer;
}

.back-arrow {
    position: fixed;
    top: 50%; 
    transform: translateY(-50%); 
    left: 20px; 
    font-size: 1.2rem; 
    font-family: 'Inter', sans-serif; 
    z-index: 2; 
    background: #f2f2f2; 
    padding: 10px 15px; 
    border-radius: 5px; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 
}

.back-arrow a {
    text-decoration: none; 
    color: #000; 
    transition: color 0.3s ease; 
}

.back-arrow a:hover {
    color: #9c9c9c; 
    text-decoration: underline; 
}

.main-footer {
    position: relative;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding-bottom: 1.3rem;
    padding-top: 2rem;
}
  
.main-footer-text {
    font-size: 15px;
    font-family: 'Inter';
    font-weight: 300;
    color: black;
    margin-bottom: 0.5rem;
}  

body.main-container::-webkit-scrollbar {
    width: 8px;
}

body.main-container::-webkit-scrollbar-track {
    background-color: #FFFFFF;
}

body.main-container::-webkit-scrollbar-thumb {
    background-color: #000000;
    z-index: 4;
}

body.main-container::-webkit-scrollbar-thumb:hover {
    background-color: #616161;
    z-index: 4;
}

/* Gallery Styling */
.gallery-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    width: 80%;
    padding-top: 40px; /* Adjust based on the arrow's size */
}

.gallery-item {
    position: relative;
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer; /* Indicate clickability */
}

.gallery-item-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    font-size: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    pointer-events: none; 
    line-height: 1.5; /* Adjust line spacing for more space after breaks */
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    pointer-events: none; 
}

.gallery-item:hover img {
    transform: scale(1.05); 
}

.gallery-item:hover .gallery-item-title {
    opacity: 1; 
}

.gallery-item:hover::after {
    opacity: 0.8; 
}

/* Fullscreen Gallery Styling */
.fullscreen-gallery {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); 
    z-index: 9999; 
    justify-content: center;
    align-items: center;
}

.fullscreen-gallery .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.fullscreen-gallery .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.fullscreen-gallery .prev,
.fullscreen-gallery .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -50px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
}

.fullscreen-gallery .prev {
    left: 10px;
}

.fullscreen-gallery .next {
    right: 10px;
}

.fullscreen-gallery .fullscreen-item {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: none;
}

.fullscreen-gallery .fullscreen-item.show {
    display: block; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%; /* Change to single column */
        max-width: 100%; /* Allow full width for single column */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%; 
    }
}

@media (max-width: 900px) {
    .main-image div {
        width: 95%;
    }

    .content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .title, .title-sub {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    @media (max-width: 600px) {
        .main-image div {
            width: 90%;
        }

        .content,
        .section .content {
            flex-direction: column;
            padding: 15px;
            gap: 15px;
        }

        .title,
        .title-sub,
        .description {
            font-size: 1.5rem; 
        }

        .description {
            font-size: 0.9rem; 
        }
    }
}

@media (max-width: 600px) {
    .left-header {
		font-size: 1rem;
	}

	.linkedin img,
	.mail img {
	max-height: 1rem;
	}
}
</pre></body></html>