body {
    display: flex;
    flex-direction: column; /* keeps items stacked vertically */
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    min-height: 100vh;       /* full viewport height */
    margin: 0;               /* removes default browser margin */

    background-image: url("/images/bgimages/image1.jpg");
    background-size: cover; /* fills the screen */
    background-position: center; /* keeps it centred */
    background-repeat: no-repeat; /* stops tiling */

    box-shadow: inset 0 0 300px 50px rgba(0, 0, 0, 0.8);

}

.content-container {
    width: 80%;
}

.title {

    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: clamp(12px, 4vw, 32px); margin-top: clamp(20px, 6vw, 60px);
}

.title-img {
    margin-top: 1vw;
    width:50%;
}

.title h1 {
    font-size:8vw;
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
}

.title p  {
    font-size: 4vw;
    margin: 0px;
    margin-bottom: 10px;
    padding: 0px;
}

.link-container {
    margin-top: 8px;
}

.link-box {
    display: flex;
    flex-direction: row;
    align-items: center;   /* vertically align image + text */
    gap: 16px;             /* space between image and text */

    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 60px;
    padding: 20px;
}

.link-box:hover {
    border: 2px solid white;
    background-color: rgba(0, 0, 0, 0.8);
}


.link-img {
    width: 24vw !important;

}

.link-text {
    display: flex;
    flex-direction: column;
    color: white;
    text-decoration: none;
    padding-left: 2vw;
}


.link-name {
    font-size: 6vw;
    margin: 0px;
    padding: 0px;
    font-weight: bold;
}

.link-desc {
    font-size: 4vw;
    margin: 0px;
    padding: 0px;
}

a {
    color: inherit;          /* use parent text color */
    text-decoration: none;   /* remove underline */
    font: inherit;           /* inherit font family + size */
    background: none;        /* remove highlight backgrounds */
    border: none;            /* remove borders */
    outline: none;           /* remove focus outline (optional) */
}

a:hover,
a:active,
a:visited,
a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}
