body {
  background-image: linear-gradient(120deg, #121212 0%, #424242 100%);
  color: white;
}

/* Add any other custom styles as needed */
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.card {
  width: 45%; /* Make the top card full width */
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.158);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.2px);
  -webkit-backdrop-filter: blur(15.2px);
  border: 2px solid rgba(255, 255, 255, 0.548);
}

.social-input {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
  justify-content: center;
}

.btn {
  background-color: #00bbff;
}

#wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  margin-top: 20px;
}

#btnOff,
#btnOn {
  position: absolute;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e0e1e5, #babcc5);
}

#btnOn {
  background: linear-gradient(180deg, #32a3fb, #1455ec);
  opacity: 0;
  pointer-events: none;
}

/* Adjust the layout of the card content */
.card-body {
  padding: 20px;
}

.card-body p {
  margin-bottom: 10px; /* Add margin between paragraphs */
}

/* Center the "Project Made By" and "Like this Project" cards */
.bottom-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bottom-card {
  width: 48%; /* Adjust the width as needed */
  margin-right: 10px; /* Add margin between cards */
}

/* To remove margin from the last card in a row */
.bottom-card:last-child {
  margin-right: 0;
}
