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

body {
  font-family: 'Inter', sans-serif;
  background-color: #1e1e2f;
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
}

/* Left Section */
.left {
  flex: 1;
}

.left h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.left h1 span {
  color: #6c63ff;
}

.tags {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #c0c0c0;
}

/* Social Links */
.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 15px;
}

.circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #6c63ff;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.3s, background-color 0.3s;
}

.circle-btn:hover {
  transform: scale(1.1);
  background-color: #5750d4;
}

/* Right Section */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right img {
  max-width: 100%;
  border-radius: 15px;
}