body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    padding: 20px;
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.fisheye-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.menu-item {
    width: 100%;
    padding: 15px;
    background-color: #023447;
    color: white;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-item:hover {
    background-color: rgb(0, 61, 126);
}

.menu-item.active {
    transform: scale(1.2);
    background-color: #0d3561;
}

.menu-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.details {
    margin-top: 10px;
    position: relative;
}

.wonder-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .menu-item {
        padding: 10px;
    }

    .menu-text {
        font-size: 1rem;
    }

    .wonder-image {
        max-width: 200px;
    }
}
