@media (max-width: 480px) {
  .card {
    padding: 10px;
  }

  h1 {
    font-size: 1.2rem;
  }

  button {
    font-size: 0.9rem;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight:weight;
  font-style: normal;
  background: #ff006a;
  display: flex;
  justify-content: center;
  align-items: flex star;
  min-height: 100vh;
  overflow-y: auto;
  padding: 20px;
  margin: 0;
}




img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card {
  background-color: rgb(255, 255, 255);
  background-size: cover;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.video-vertical {
  width: 100%;
  max-height: 80vh;
  display: block;
  margin: 20px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid #ff006a;
  object-fit: cover;
  margin-top: 20px;
  object-position: center 15%;
  margin-bottom: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.title {
  font-size: 18px;
  color: rgb(94, 94, 94);
}

.links a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: white;
  background-color: #ff006a;
  padding: 10px;
  border-radius: 8px;
}

.links a:hover {
  background-color: #333333;
}

footer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}