body {
    background-color: #121212;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.container {
    background-color: #252525a1;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 20px;
    flex-grow: 1;
}

.nav-logo {
    text-decoration: none;
    color: white;
    text-align: left;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    margin-left: 10px;
}

.nav-logo:hover {
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
}

.header ul {
    list-style: none;
    padding: 30px;
    margin: 0;
    display: flex;
    gap: 15px;
}

.header ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.header ul li a:hover {
    background-color: #333;
}

.info {
    text-align: center;
}

.info h2 {
    color: white;
    font-size: 1.2em;
    margin-top: 50px;
}

.footer {
    background-color: #1c1c1c;
    position: relative;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 50px 50px;
    border-top: 1px solid #444;
    color: #888;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer a {
    color: #4a90e2;
    text-decoration: none;
}

.footer a:hover {
    color: #6ba3f0;
    text-decoration: none;
}

.images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: white;
    text-align: center;
    padding-bottom: 30px;

}

.images img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: cover;
}

.images img:hover {
    transform: scale(1.05);
}

.images-border {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.description {
    display: block;
    color: white;
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}


@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}