/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 30;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #e5e5f7;
    opacity: 0.8;
    background-image: radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
    background-size: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    background: #fff;
    border-radius: 15px;
    margin: 1rem;
    padding: 20px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

hr {
    width: 10rem;
    height: 2px;
    background: #333;
    margin: 10px auto;
}

.members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.team-member {
    width: calc(40% - 20px);
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: scale(1.1);
}

.profile-box {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.profile-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio {
    text-align: center;
}

h4 {
    font-size: 18px;
    margin: 5px 0;
}

p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

nav {
  background-color: #333;
  width: 100%;
  display: flex;
/*  overflow: hidden;*/
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

