.container-tutorial {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: #19154D;
  color: white;
  padding: 0 16px;
  box-sizing: border-box;
}

.container-tutorial > h2 {
  line-height: 120%;
  font-size: 26px;
  font-weight: 600; 
  margin: 0 0 8px 0;
  color: white;
}

.container-tutorial > p {
  line-height: 120%;
  font-size: 18px;
  font-weight: 300; 
  margin: 0 0 24px 0;
  text-align: center;
  width: 100%;
  max-width: 360px;
  color: white;
}

.container-tutorial > div {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  width: 100%;
  box-sizing: border-box;
  max-width: 360px;
}

.container-tutorial > div > h3 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: white;
}

.container-tutorial > div > ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style-position: inside;
  margin: 0;
}
.container-tutorial > div > ol > li {
  font-size: 16px;
  margin: 0;
  line-height: 120%;
  font-weight: 400;
}

.container-tutorial > div > ol > li::marker {
  color: #51A2FF;
  font-weight: 600;
}

.container-tutorial > button {
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;

  border-radius: 8px;
  background-color: #277CEA;

  font-weight: 600;
  color: white;
  padding: 14px 32px;
  line-height: 120%;
  font-size: 12px;
  letter-spacing: 1.35px;

  width: fit-content;
}
