@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&family=Martian+Mono:wght@200;300;400;500;700;800&family=Urbanist:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: hsl(230deg, 17%, 14%);
  color: hsl(0deg, 0%, 100%);
  font-size: 14px;
}

.bodyColorChange {
  background-color: hsl(0deg, 0%, 100%);
  color: black;
}

.overall-header {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20vh;
  margin: 10px 20px;
  background-color: hsl(232deg, 19%, 15%);
  padding: 40px;
  width: 100%;
}

.headerColorChange {
  background-color: hsl(225deg, 100%, 98%);
}

.right-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.right-header > p {
  color: hsl(228deg, 34%, 66%);
  font-weight: 700;
}

.left-header > p {
  color: hsl(228deg, 34%, 66%);
  font-weight: 700;
  padding-top: 5px;
}

.word {
  padding-right: 20px;
}

div input[type=checkbox] {
  position: relative;
  width: 50px;
  height: 25px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(to right, hsl(210deg, 78%, 56%) 0%, hsl(146deg, 68%, 55%) 100%);
  background-position: center;
  background-size: cover;
  outline: none;
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

input[type=checkbox]:checked[type=checkbox] {
  background-image: linear-gradient(to right, hsl(210deg, 78%, 56%) 0%, hsl(146deg, 68%, 55%) 100%);
}

input[type=checkbox][type=checkbox]::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 20px;
  text-align: center;
  top: 0;
  left: 0;
  background-color: black;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

input[type=checkbox]:checked[type=checkbox]::before {
  left: 25px;
  background: white;
}

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  width: 280px;
  height: 250px;
  background-color: hsl(228deg, 28%, 20%);
  border-radius: 5px;
  text-align: center;
  margin: 0 20px;
}

.box1 {
  border-top: solid 5px hsl(208deg, 92%, 53%);
}

.box2 {
  border-top: solid 5px hsl(203deg, 89%, 53%);
}

.box3 {
  border-top: solid 5px hsl(37deg, 97%, 70%);
}

.box4 {
  border-top: solid 5px hsl(348deg, 97%, 39%);
}

.box a {
  color: hsl(228deg, 34%, 66%);
  text-decoration: none;
  display: block;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
.box a span {
  font-weight: 400;
  padding-left: 10px;
}

.box h1 {
  font-size: 3rem;
  padding-top: 20px;
}

.box .followers {
  font-size: 1rem;
  letter-spacing: 5px;
  color: hsl(228deg, 34%, 66%);
}

.triangule {
  margin-top: 50px;
  font-size: 12px;
  color: hsl(146deg, 68%, 55%);
}
.triangule img {
  width: 10px;
  margin-right: 8px;
}

.heading h1 {
  margin: 10px 0px;
  padding-top: 20px;
}

.smallBox {
  width: 280px;
  height: 150px;
  background-color: hsl(228deg, 28%, 20%);
  border-radius: 5px;
  align-items: center;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boxColorChange {
  background-color: hsl(227deg, 47%, 96%);
  color: black;
}

.text-logo {
  display: flex;
  justify-content: space-between;
  width: 80%;
  padding-bottom: 30px;
}
.text-logo h3 {
  font-size: 14px;
  color: hsl(228deg, 34%, 66%);
}

.numbers {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.numbers p {
  color: hsl(163deg, 72%, 41%);
}
.numbers .red {
  color: hsl(356deg, 69%, 56%);
}/*# sourceMappingURL=style.css.map */