body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.menu-bar {
    display: flex;
    flex-direction: column;
    background-color: #333;
    padding: 10px;
    color: white;
}

.search-bar {
    width: 100%;
    margin: 10px 0;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.icon {
    cursor: pointer;
    font-size: 24px;
    text-align: center;
}

.dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
    animation: slideDown 0.5s ease-out;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical-menu {
    width: 100%;
    background-color: #222;
    padding: 10px;
}

.vertical-menu ul {
    list-style: none;
    padding: 0;
}

.vertical-menu ul li {
    margin: 10px 0;
}

.vertical-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.image-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}