@font-face {
    font-family: 'CC Up Up And Away';
    src: url('font/CCUpUpAndAway.eot');
    src: local('CC Up Up And Away'), local('CCUpUpAndAway'),
        url('font/CCUpUpAndAway.eot?#iefix') format('embedded-opentype'),
        url('font/CCUpUpAndAway.woff2') format('woff2'),
        url('font/CCUpUpAndAway.woff') format('woff'),
        url('font/CCUpUpAndAway.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

header {
	color: white;
	padding: 20px;
	align-items: center;
	background-color:#c65656;
}

/* General Styles */
a {
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 60px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.menu a:hover {
    text-decoration: underline;
}

/* Main Section */
main {
    padding: 40px 20px;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.description {
    text-align: left;
}

.description h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
}

.description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
		width: 80%;
    }

    .avatar {
        margin: 0 0 20px;
    }

    .description {
        text-align: center;
    }
}
