html,
body {
  width: 100%;
  height: 100%;
  font-family: "Quicksand";
  margin: 0;
  padding: 0;
}

.terms {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2em;
}
.terms p {
  text-align: justify;
}

.no-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

button {
  font-family: "Quicksand";
  font-weight: bold;
}

header {
  position: absolute;
  top: 0;
  display: flex;
  z-index: 2;
  height: 32px;
  line-height: 32px;
  padding: 1em;
  box-sizing: content-box;
  background-color: #2F8084;
  color: #FAFAFA;
  font-weight: bold;
  letter-spacing: 0.25em;
}
header img {
  height: 100%;
  margin-right: 1em;
}

footer {
  width: 100%;
  padding: 2em;
  text-align: center;
  background-color: #2F8084;
  color: #FAFAFA;
}
footer div {
  margin-top: 2em;
}
footer a {
  font-weight: bold;
  color: #FAFAFA;
}

article {
  width: 100%;
  max-width: 800px;
  padding: 0 2em;
  margin: 4em auto;
}
article:last-of-type {
  padding-bottom: 2em;
}
article p {
  text-align: justify;
}
article .tuning {
  display: table;
}
article .tuning .tuning-row {
  display: table-row;
  height: 2em;
}
article .tuning .tuning-row div {
  display: table-cell;
}
article .tuning .tuning-row div:first-child {
  font-weight: bold;
  padding-right: 1em;
}
article .tuning .tuning-row div:not(:first-child) {
  width: 2em;
  padding-left: 1em;
}

.tuner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #2F8084;
  color: #FAFAFA;
}
.tuner .note {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10em;
}
.tuner .note div {
  position: relative;
  margin: 0 0.5em;
}
.tuner .note div.back {
  font-size: 0.5em;
  margin: 0.5em;
  opacity: 0.25;
}
.tuner .note div .sharp {
  position: absolute;
  font-size: 0.3em;
  opacity: 0;
}
.tuner .note div .octave {
  position: absolute;
  font-size: 0.3em;
  right: -0.75em;
  bottom: 0;
}
.tuner .frequency {
  font-size: 1.5em;
}
.tuner .bar {
  position: relative;
  width: 25%;
  height: 1px;
  margin-top: 4em;
}
.tuner .bar .scale {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  background-color: #FAFAFA;
}
.tuner .bar .marker {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #FAFAFA;
}
.tuner .bar .center {
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  border-radius: 4px;
}
.tuner .bar #pointer {
  height: 24px;
  top: calc(50% - 12px);
  left: 50%;
  border-radius: 4px;
  margin-left: -4px;
  background-color: #FAFAFA;
  transition: left 0.5s;
}
.tuner .start-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tuner .start-container .start-background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #2F8084;
}
.tuner .start-container button {
  font-size: 3em;
  letter-spacing: 0.1em;
  padding: 1em;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  color: #2F8084;
  background-color: white;
  box-shadow: #ebebeb 0px 6px 0px;
  z-index: 2;
  cursor: pointer;
  transition: color 0.5s ease-in-out 0s;
}
.tuner .add-button {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 1.2em;
  background-color: #FAFAFA;
  color: #2F8084;
  cursor: pointer;
  font-weight: bold;
  box-shadow: #ebebeb 0px 6px 0px;
  z-index: 2;
}

.cookie-banner {
  z-index: 3;
  width: 90%;
  max-width: 720px;
  position: fixed;
  bottom: 1em;
  left: max(5%, calc(50% - 360px));
  border-radius: 4px;
  padding: 1em;
  margin: 0 auto;
  background-color: #FAFAFA;
  border: 2px #ebebeb solid;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cookie-banner button {
  margin-left: 4em;
  background-color: #2F8084;
  color: #FAFAFA;
  border: none;
  border-radius: 4px;
  padding: 0.5em 2em;
  cursor: pointer;
  font-size: 1.2em;
}

@media (min-width: 320px) and (max-width: 800px) {
  .tuner .start-container button {
    font-size: 2em;
  }
  .tuner .note {
    font-size: 7.5em;
  }
  .tuner .note div {
    margin: 0 0.3em;
  }
  .tuner .frequency {
    font-size: 1.5em;
    margin-top: 1em;
  }
  .tuner .bar {
    width: 80%;
    height: 2px;
    margin-top: 4em;
  }
  .tuner .bar .scale {
    border-radius: 2px;
  }
  .tuner .add-button {
    height: 48px;
    line-height: 48px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-end;
  }
  .cookie-banner button {
    margin-left: 0;
    margin-top: 2em;
  }
}

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