@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(#c7804a 0%, #5f5d5f 100%);
}

.main-container {
    background: #fff;
    border-radius: 15px;
    margin: 1rem;
    padding: 10px;
    /*box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);*/
}

h2 {
    text-align: center;
}

hr {
    width: 25rem;
    margin: 10px auto;
}

.members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    margin: 30px;
    transition: all .3s ease;
    cursor: pointer;
    
    
}

.team-member:hover {
    transform: scale(1.1);
}

img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px;
    
}

h4{
text-align: left;
}
p {
    text-align: left;
    font-size: 12px;
    margin: 7px;
}