/* Set up the full page background */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.background {
    background-image: url('chimp.jpeg'); /* Set the image */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Style the links container */
.links-container {
    background-color: rgba(0, 0, 0, 0); /* Fully transparent background */
    padding: 20px;
    border-radius: 8px;
}

/* Style the links */
.link {
    display: block;
    color: white;
    font-size: 24px;
    text-decoration: none;
    margin: 10px 0;
}

.link:hover {
    color: #ffcc00; /* Change color on hover */
    text-decoration: underline;
}