h1, .site-title {
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold !important;
    color: #204168 !important; /* A calming blue color */
}

.home-text {
    display: block;
}

.navbar {
    background-color: #003366; /* Dark blue */
    padding: 10px 0;
    text-align: center;
}

.navbar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar-menu li {
    margin: 0 15px;
}

.navbar-menu a {
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar-menu a:hover {
    background-color: #00509E;
}

.linkedin-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.linkedin-container img:hover {
    transform: scale(1.1);
}

img[src$='#center'] {
    display: block;
    margin: 1.0rem auto;
    max-width: 100%;
    height: auto;
}

.team-wrapper {
    display: flex;
    flex-direction: column; /* Stacks elements */
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Centers items vertically */
    width: 100%;
    text-align: center;
}

.team-text {
    display: block !important;
    opacity: 1 !important;
    color: black !important;
    transition: none !important; /* Prevents delayed rendering */
}