* {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  scroll-behavior: smooth;
  animation: easyFadeIn 400ms ease-in-out;
}

@keyframes easyFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: #f6f6f7; */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
  gap: 15px;
  width: 55%;
}

.container .gettingStarted {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #d7d7d7;
}

.container .gettingStarted .header {
  display: flex;
  justify-content: space-between;
}

.container .gettingStarted .header .closeBtn {
  cursor: pointer;
}

.container .gettingStarted .steps {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.container .gettingStarted .steps .step {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.container .gettingStarted .steps .step .bullet {
  height: 12px;
  width: 12px;
  border-radius: 19px;
  border: 2px dotted black;
  opacity: 0.7;
  cursor: pointer;
}

.container .gettingStarted .steps .step .step-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container .gettingStarted a {
  padding: 7px 12px;
  text-decoration: none;
  width: fit-content;
  background: #000;
  color: #fff;
  opacity: 1;
  cursor: pointer;
  border: 0;
  outline: 0;
  border-radius: 5px;
  transition: 300ms ease-in-out;
}

.container .gettingStarted a:hover {
  background-color: #313131;
  box-shadow: 0 0 25px #9a9a9a;
}

.container .gettingStarted a:focus {
  opacity: 0.7;
}