body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.box {
    background-color: white;
    color: black;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.box:hover {
    transform: scale(1.1);
}

.box a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.navigation {
    margin-top: 20px;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.navigation a:hover {
    background-color: white;
    color: black;
}
