/* new file */

@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600');

body {
    margin: 0;
    font-family: 'Titanium Web';
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 45px;
    background-color: #acacac;
}

.nav-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-item a:hover {
    color: #61b0ff;
    transform: scale(1.1);
}

.nav-item label {
    cursor: pointer;
    position: relative;
}

.nav-item label::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-item label:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-item:first-child {
    margin-left: 12%;
}

.nav-item:last-child {
    margin-right: 12%;
}

.logo {
    height: 40px;   
    margin-right: 10px;
}

.nav-item span {
    color: #333;
    font-size: 18px;
}

.nav-item:last-child span {
    color: #333;
    font-size: 18px;
}

.gallery-container {
    padding: 0 100px; /* Adjust this value to add more space on the left and right */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    padding: 10px 0; /* Optional: adds padding on top and bottom */
}

.gallery img {
    width: 100%;
    border-radius: 10px; /* Rounded rectangular border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for better visual separation */
    border: 2px solid #ddd; /* Optional: adds a border around the images */
    padding: 5px; /* Optional: adds padding inside the border */
    background-color: white; /* Optional: sets the background color inside the border */
}