



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}


main {
  text-align: center;
  max-width: 1200px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 300;
}

.profile {
  display: inline-block;
  margin: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.profile:hover img {
  border-color: #fff;
}

.profile p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .profile img {
    width: 120px;
    height: 120px;
  }
}
}