
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');





* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width:300px;
    margin: 20px auto;
    padding: 20px;
    background: #e0dddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 300px;
}

h1 {
    text-align: center;
    color: #61afee;
    margin-bottom: 20px;
}

h2 {
    color: #555;
    margin: 10px 0;
}

.team {
    margin: 20px auto;
    padding: 20px;
}

.eachmember {
    background: #e0dddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.3s;
}

.eachmember:hover {
    transform: scale(1.02);
}

.eachmember img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

h3 {
    text-align: center;
    color: #333;
    margin: 10px 0;
}

p {
    text-align: justify;
    margin-bottom: 15px;
    font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: larger;
}

@media (min-width: 768px) {
    .team {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .eachmember {
        flex: 1 0 45%;
        margin: 10px;
    }
}
