* {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, rgba(84, 140, 255, 0.8), rgba(255, 84, 140, 0.8));
  padding: 40px;
  box-sizing: border-box;
  height: 100vh;
  background-repeat: no-repeat;

  font-family: 'Poppins', sans-serif;
  overflow-y: auto;
}

.container {
  display: flex;
  gap: 20px;
  margin: auto;
  max-width: 900px;
}

.box {
  padding: 30px;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
  height: 100%;
}
.box p {
  color: rgb(34, 34, 34);
  text-align: center;
}
.name {
  font-weight: 700;
  font-size: 20px;
}
.id {
  font-weight: 700;
  font-size: 18px;
  opacity: 0.8;
}
.school {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}
.major {
}

.social {
  margin-top: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social li {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  transition: 300ms;
}
.social li a {
  display: flex;
  align-items: center;
  gap: 2px;
}
.social li:hover {
  opacity: 1;
  text-decoration: underline;
}

a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}

.pp {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pp img {
  padding: 4px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  width: 200px;
  border-radius: 10px;
}

/* on mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  body {
    height: auto;
  }
}
