/* Google Font */
body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  padding: 20px;
  text-align: center;
  color: black;
  height: 100%;
}

html {
  background: #ffffff;
}

/* Title */
h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Profile Card Container */
.container {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  height: fit-content;
  gap: 20px;
  padding: 20px;
  width: 1500px;
  margin: 0 auto;
  border-radius: 15px;
  border: 3px solid #000000;
}

/* Profile Card (Glassmorphism Effect) */
.profile-card {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Profile Image */
.profile-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.profile-card img:hover {
  transform: scale(1.1);
}

/* Profile Name */
.profile-card h2 {
  font-size: 1.3em;
  margin: 10px 0;
  font-weight: 600;
  color: black;
}

/* Profile Role */
.profile-card p {
  color: black;
  font-size: 0.8em;
  margin-bottom: 10px;
}

/* Button */
.profile-card button {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  color: black;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.profile-card button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.github-link {
  text-align: center;
  margin-top: 20px;
  font-size: 1.5em;
}

.github-link a {
  color: black;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
  }
}


/* Poppins Font */
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}
