body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #333;
    overflow: hidden;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navbar ul li a:hover {
    background-color: #575757;
}

/*
Breadcrumb testing
*/

.breadcrumb-container {
    padding: 10px 20px;
}

.breadcrumb {
    display: inline-block;
    padding: 10px 0;
}

.breadcrumb a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb a:not(:last-child)::after {
    content: '>';
    margin: 0 5px;
    color: #333;
}

.content {
    padding: 20px;
}


/*
Talent Container-seprate name and img
*/
.talent-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.talent-card {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    margin: 20px;
    border-radius: 20px;
    border: 3px solid black;
    overflow: hidden;
}

.name-section {
    background-color: lightskyblue; 
    padding: 10px;
}

.image-section {
    background-color: #f6f6b2; 
    padding: 0;
    margin: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    width: 400px; 
    height: 400px; 
    transition: background-image 0.3s ease-in-out;
}


.image-section a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; 
}

.talent-card.hover-image .image-section {
    cursor: pointer;
}



footer {
    text-align: center;
    min-height: 100vh;
    display:flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #333;
    color: white;
}


/*lunar Stella

*/

.lunarStella {
    background-color: gray;
    display: flex;
    flex-direction: row;
}

.lunarStella > .lunarStellaImage {
    flex: 1;
    text-align: right;
}

.lunarStellaImage > img {
    max-width: 100%;
    max-height: 300px;
    display: block;
}

.lunarStella > .lunarStellaText {
    flex: 2;
    margin: auto 0;
    padding-left: 20px;
}

/* 404 holder */

.fourzerofour {
    size:cover;
    position: relative;
    text-align: center;
    color: white;
  }

.fourzerofourtext {
    position: absolute;
    font-size: 20vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }