body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('img/bg1.jpg');
    background-size: 120%; /* Shrink or stretch background image */
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#links {
    padding: 0em;
    border-radius: 5px;
}


#links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#links ul {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Make items take full width */
}

#links li {
    margin-bottom: 1em;
}

#links a {
    display: block;
    padding: 1em 3em;
    background-color: rgba(51, 51, 51, 0.8); /* 30% opacity for #333 */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover; /* Cover the entire link area */
    background-blend-mode: soft-light; /* Make background semi-transparent */
}

#links img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.5em;
    border-radius: 50%;
}
