body {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: Arial, sans-serif;
    padding-top: 60px;
}


.images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px 0;
}

.images img {
    transition: all 0.3s ease;
    filter: brightness(1);
    transform: scale(1);
    object-fit: cover;
    max-width: 100%;
    height: auto;
    margin: 10px;
}

.images img:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255,255,255,0.9));
    transform: scale(1.1);;
}

.images img:active {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(255,255,255,0.9));
    transform: scale(1.05);
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px 0;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body {
        padding-right: 3%;
        padding-left: 3%;
        padding-top: 50px;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .images {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .images img {
        max-width: 100%;
        height: auto;
        margin: 8px 0;
    }

    .copyright {
        font-size: 12px;
        padding: 10px 0;
    }

    nav {
        flex-direction: row;
        height: 50px;
        padding: 0 10px;
        position: relative;
    }
    
    .logo-title {
        display: block;
        font-size: 18px;
        margin: 0;
    }
    
    h2 {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 22px;
        cursor: pointer;
        color: #000;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background: #fff;
        padding: 8px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    ul {
        flex-direction: column;
        width: 100%;
    }
    
    li {
        margin: 0;
        width: 100%;
    }
    
    li a {
        text-align: left;
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .icon-list {
        padding: 0;
        margin: 16px 0;
    }
}