body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin: 10px;
    /* padding: 10px; */
    border-radius: 20px;
    width: 300px;
    height: 173px;
    transition: transform 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.link-item:hover {
    transform: scale(1.05);
}

.link-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}
