* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    margin: 0;
    overflow: hidden;
    background: #FF4AB2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}
canvas#background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 100px;
    width: 80%;
    max-width: 900px;
    height: 100%;
    max-height: 900px;
}
.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.grid-item:hover {
    transform: scale(1.1);
}
.grid-item a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.grid-item img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}


.central-item {
transform: scale(2.5);
}

.central-item:hover {
    transform: scale(2.7);
}

