body {
  margin: 0;
  padding: 0;
  background-color: #131313;
  display: flex;
  justify-content: center;
}
.content {
  height: 100px;
  width: 400px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;

  margin-top: 15vh;
}
img,
svg {
  width: 20px;
}
.content button {
  padding: 15px 30px;
  white-space: nowrap;
  font-family: "Questrial Bold", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.content button:hover {
  transform: scale(0.9);
}
button:nth-child(1) {
  background-color: #4984f3;
  color: white;
  border-radius: 0.5rem;
}
button:nth-child(2) {
  background: linear-gradient(to right, #7460fc, #d34fff);
  color: white;
  border-radius: 0.5rem;
}
button:nth-child(3) {
  background-color: #e93f61;
  color: white;
  border-radius: 1.6rem;
}
button:nth-child(4) {
  background: linear-gradient(to right, #00878b, #00e2ab);
  color: white;
  border-radius: 1.6rem;
}
button:nth-child(5) {
  border: 3px solid #be94c0;
  border-radius: 0.5rem;
  color: #be94c0;
  background: none;
}
button:nth-child(6) {
  background: linear-gradient(#131313, #131313) padding-box,
    linear-gradient(45deg, slateblue, coral) border-box;
  border: 3px solid transparent;
  border-radius: 0.5rem;
}
button:nth-child(6) span {
  background: -webkit-linear-gradient(45deg, slateblue, coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
button:nth-child(7) {
  background-color: #ffcc65;
  border-radius: 2px;

  display: flex;
  align-items: center;
}
button:nth-child(7) svg {
  position: relative;
  right: -10px;
}
button:nth-child(8) {
  display: flex;
  align-items: center;
}
button:nth-child(8) svg {
  position: relative;
  right: -10px;
  border-radius: 2px;
}
button:nth-child(9) {
  background-color: #00cb74;
  border-radius: 0.7rem;
  color: #eeeeee;

  display: flex;
  align-items: center;
}
button:nth-child(9) svg {
  position: relative;
  right: -10px;
  background-color: #00a55f;
  padding: 2px;
  border-radius: 30px;
  width: 17px;
}
button:nth-child(10) {
  display: flex;
  align-items: center;
  background-color: #6b63f8;
  border-radius: 0.7rem;
}
button:nth-child(10) svg {
  position: relative;
}
button:nth-child(10) span {
  background-color: #564bfb;
  position: relative;
  left: -15px;
  padding: 5px;
  border-radius: 0.7rem;
}
button:nth-child(11) {
  background-color: #00b8f1;
  color: white;
  display: flex;
  align-items: center;
  border-radius: 0.7rem;
}
button:nth-child(11) svg {
  position: relative;
  right: -10px;
}
button:nth-child(12) {
  background: linear-gradient(
    90deg,
    rgba(224, 254, 129, 1) 40%,
    rgba(168, 225, 0, 1) 100%
  );
  display: flex;
  align-items: center;
  border-radius: 0.7rem;
}
button:nth-child(12) svg {
  position: relative;
  right: -10px;
}