.logo
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; 
    color: #333; 
    padding: 20px; 
}

header {
    background: linear-gradient(45deg, #333, #444); 
    color: #fff; 
    padding: 2rem 1rem; 
    text-align: center; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    position: relative;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 2.5rem; 
    margin: 0 2rem; 
}

.logo {
    width: 120px; 
    height: auto; 
}

.sub-heading {
    font-size: 1.2rem; 
    margin: 0.5rem 0; 
}

.role {
    font-size: 1rem; 
    margin: 0.5rem 0; 
    font-weight: 300; 
}

section {
    margin: 20px 0; 
    padding: 15px; 
    background: white; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

h2 {
    color: #2196f3; 
    margin-bottom: 10px; 
}

ul {
    list-style-type: none; 
    padding-left: 0; 
}

li {
    margin: 10px 0; 
}

.screenshot-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.screenshot {
    width: 300px; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333; 
    color: white; 
    border-radius: 8px; 
    margin-top: 20px; 
}

@media (max-width: 768px) {
    .screenshot {
        width: 100%; 
        max-width: 300px; 
    }

    section {
        margin: 10px; 
    }
}

ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 10px 0;
}

ul li {
    margin: 10px 0;
}

@media (max-width: 768px) {
    section {
        padding: 10px;
    }

    
    .logo {
        width: 60px;
    }

    header h1 {
        font-size: 2rem; 
        margin: 0 1rem; 
    }

    .gallery {
        width: 100%; 
        max-width: 300px; 
    }
}

.photo-gallery {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin-top: 20px; 
}

.gallery {
    width: 300px; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
}

.gallery:hover {
    transform: scale(1.05); 
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2); 
}

.home-button-container {
    text-align: center; 
    margin-top: 15px; 
}

.btn-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196f3; 
    color: white; 
    text-decoration: none; 
    font-size: 1rem; 
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s, transform 0.3s; 
}

.btn-home:hover {
    background-color: #1976d2; 
    transform: scale(1.05); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}
