* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #010409;
}

.main_containt {
    background-color: #010409;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside-containt {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    flex-direction: column;
    gap: 130px;
}

.team-scope {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-scope h1 {
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.team-scope ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
    width: 500px;
    background-color: #16171d;
    display: flex;
    gap: 20px;
    color: white;
    padding: 20px;
    border-radius: 3px;
    border-bottom: 10px solid #0f0f13;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card img {
    width: 150px;
    border-radius: 100%;
}

.people-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.people-description h1 {
    font-weight: 500;
    font-size: 20px;
}
.people-description p {
    line-height: 1.5;
    letter-spacing: 2;
}

.people-description a {
    font-style: italic;
    font-weight: normal;
    text-decoration: none;
}