body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #ffffff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
}

.box {
    flex: 1 1 calc(33.333% - 40px);
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2em;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.box img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}

.box:hover {
    transform: scale(1.05);
    background-color: #333333;
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .box {
        flex: 1 1 calc(100% - 40px);
    }
}
