body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #e5f5e0;
  background-image: url('tg-pattern.png');
  background-size: cover;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.avatar {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.title {
  font-size: 25px; 
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.description {
  font-size: 21px;
  color: #666666;
  margin-bottom: 24px;
}

.button {
  background-color: #0088cc;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 18px 36px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background-color: #0077b3;
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
    max-width: 340px;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

  .title {
    font-size: 21px; 
  }

  .description {
    font-size: 18px;
  }

  .button {
    font-size: 20px;
    padding: 15px 30px;
  }
}
