@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  src: local("Montserrat Light"), local("Montserrat-Light"), url(montserrat-light.woff2) format("woff2"), url(montserrat-light.woff) format("woff");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(montserrat-semibold.woff2) format("woff2"), url(montserrat-semibold.woff) format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Montserrat;
}

header {
  height: 80px;
  width: 100%;
  background: #fff;
  /* box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.03); */
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1058823529);
}

main {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
main h2 {
  padding: 40px;
  font-weight: 300;
}

#myInput {
  padding: 10px;
  width: 60px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1058823529);
  text-align: center;
  /* &:focus-visible {
      outline: 1px solid #000;
  } */
}
#myInput:focus {
  outline: none;
}

#meditation {
  width: 200px;
  height: 50px;
  font-size: 1.4em;
  padding: 6px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1058823529);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1058823529);
  border-radius: 12px;
}
#meditation:hover {
  transform: translateY(2px);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1058823529);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2196078431);
  border-right: 1px solid rgba(0, 0, 0, 0.2196078431);
}

.start {
  border: 1px solid rgba(0, 0, 0, 0.1058823529);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.368627451);
  border-radius: 12px;
  background-color: #fefefe;
  padding: 10px;
  margin: 6% auto;
  padding-top: 40px;
  width: 40%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 40px;
}
.start p {
  text-align: center;
  font-size: 1.1rem;
}
.start p span {
  font-size: 0.8rem;
}
.start:has(input:focus) {
  background-color: rgba(36, 36, 101, 0.805);
}
.start:has(input:focus) p {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6274509804);
  font-weight: 600;
}
.start:has(input:focus) #meditation {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6196078431);
}
@media (max-width: 767px) {
  .start {
    width: 90%;
    box-shadow: unset;
  }
}

.message {
  text-align: center;
}

/*# sourceMappingURL=theme.css.map */
