:root {
  --black: #4d4c59;
  --purple: #6c63ff;
  --light-grey: #c8c8c8;
  --text-color: #9c9ab6;
}

root,
body {
  display: flex;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  /* border: 1px solid brown; */
}

div {
  display: flex;
  box-sizing: border-box;
  /* border: 1px solid lime; */
}

h1 {
  color: var(--purple);
  font-weight: bold;
  font-size: 2em;
}

img {
  width: 100%;
}

button {
  width: 160px;
  height: 45px;
  color: white;
  background: var(--purple);
  border-radius: 10px;
  border: none;
  margin: 24px 0;
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* height: 100%; */
  max-width: 1024px;
  /* border: 1px solid green; */
}

.header-container {
  /* width: 100%; */
}

.body-container {
  display: flex;
  width: 100%;
  /* height: 100%; */
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* border: 1px solid lime; */
}

.counter-labels {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  /* border: 1px solid lime; */
}

.counter-labels p {
  padding: 0;
  margin: 0;
  font-size: 4em;
  color: var(--black);
}

.rocket-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  /* border: 1px solid lime; */
}

.footer-container {
  /* width: 100%; */
}
