@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  color: white;
  font-weight: 600;
  font-family: inter;
  overflow-x: hidden;
  overflow-y: hidden;
}
body {
  background-color: #121212;
}

/* container for buttons and text */
.content-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
input {
  display: none;
}

/* button body */
.button {
  background-color: #282828;
  width: 146px;
  height: 50px;
  border-radius: 50px;
  border: 3px solid;
  cursor: pointer;
  position: relative;
}
/* button circle thingy */
.button::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 200px;
  margin: 5px;
  transition: 0.5s;
}

/* changes after buttons have been toggled */
input:checked + .button {
  background-color: #3ccf65;
}
input:checked + .button:before {
  transform: translateX(94px);
}
.btn-text {
  width: 530px;
  text-align: center;
  text-justify: auto;
  font-size: 50px;
}
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(bg.png);
  background-size: 40px;
  opacity: 38%;
}
.container {
  position: absolute;
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
footer {
  justify-content: center;
  display: flex;
  height: 40px;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 0;
  background-color: #000000;
  width: 100%;
  font-size: 20px;
}
.rec-heart {
  height: 200px;
  width: 80px;
  background-image: linear-gradient(
    to top,
    rgb(255, 255, 255, 0.75),
    rgb(255, 255, 255, 0.35)
  );
  border-radius: 100px;
  transform: rotate(135deg);
  position: absolute;
  bottom: -70px;
  right: 50px;
}
.elip-heart {
  height: 80px;
  width: 80px;
  position: absolute;
  background-image: linear-gradient(
    to right,
    rgb(255, 255, 255, 0.75),
    rgb(255, 255, 255, 0)
  );
  border-radius: 50%;
  bottom: 30px;
  right: 20px;
  transform: rotate(135deg);
}
@media (max-width: 768px) {
  .button {
    width: 100px;
    height: 35px;
    border: 2px solid;
  }
  .button::before {
    width: 25px;
    height: 25px;
  }
  input:checked + .button:before {
    transform: translateX(65px);
  }
  .btn-text {
    font-size: 20px;
    width: 150px;
  }
  footer {
    font-size: 10px;
  }
}
