* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #bc5a0f 0%, #f7cd00 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    max-width: 80%;
    width: 80vw;
    /* height: 20%; */
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;    
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: black;
}
.subtitle {
    color: black;
}


.memberInfo {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding-top: 1%;
    padding-left: 1%;
    color: black;
}

.memberInfoItem {
    display: flex;
    flex-direction: row;
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
}
.footer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.8;
    border: solid;
    border-color: solid white;
    border-width: 1px;
}

.teamInfo {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.teamItem {
    display: flex;
    width: 100%;
}

.teamImage {
    width: 15%;
    height: 100%;
    border-radius: 15px;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.teamEmail {
    text-decoration: none;
    color: #bc5a0f;
}

.teamInfo {
    color: black;
}