body {
    background-image: url('../images/version.png');
    background-size: cover;
    background-position: center;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    color: white;
}
.content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}
.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    justify-items: center;
    padding-bottom: 60px;
}
.image-item {
    text-align: center;
    cursor: pointer;
}
.image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-button {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    font-size: 14.4px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 1px solid white;
    transition: background-color 0.3s ease;
}
 .menu-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}
 h1 {
    text-align: center;
    font-size: 36px;
    margin-top: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    margin: 15% auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    max-width: 90%;
    color: white;
    text-align: center;
}
 .modal-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: #ccc;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #444;
    color: white;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
