@font-face {
  font-family: "Deutsch Gothic";
  src: url("./fonts/Deutsch.ttf") format("woff2");
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f3ecd5;
  color: #3e2f1c;
  font-family: 'Deutsch Gothic', serif;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 20px;
  z-index: 2;
  margin-bottom: 10px;
}

h1 {
  background-color: #f0e3c2;
  color: #3e2f1c;
  padding: 20px 40px;
  border-radius: 10px;
  border: 3px solid #8b5e2b;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  box-shadow: 2px 2px 0 #8b5e2b, inset 0 1px 2px rgba(255,240,180,0.2);
}

#chantSelect {
  background-color: #f0e3c2;
  color: #3e2f1c;
  border: 2px solid #8b5e2b;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Deutsch Gothic';
  font-size: 1.1rem;
  box-shadow: 2px 2px 0 #8b5e2b, inset 0 1px 2px rgba(255,240,180,0.2);
  transition: all 0.2s ease;
}

#chantSelect:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(210, 180, 100, 0.4);
}

#middle {
  position: relative;
  display: block;
}

#colorAura {
  position: absolute;
  top: 3px;
  left: 3px;
  pointer-events: none;
  z-index: -1;
  isolation: isolate;
}

#chantContainer {
  z-index: 1;
  border-radius: 10px;
  border: 3px solid #8b5e2b;
  box-shadow: 2px 2px 0 #8b5e2b, inset 0 1px 2px rgba(255,240,180,0.2);
}

#chantContainer:empty {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

#bottom {
  background-color: #f0e3c2;
  color: #3e2f1c;
  border: 2px solid #8b5e2b;
  box-shadow: 2px 2px 0 #8b5e2b, inset 0 1px 2px rgba(255,240,180,0.2);
  border-radius: 8px;
  position: sticky;
  display: flex;
  bottom: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
  padding: 10px;
  box-sizing: content-box;
  z-index: 2;
  width: fit-content;
}

.controlBtns {
  display: flex;
  flex-direction: row;
}

.controlBtns button {
  background-color: #f0e3c2;
  border: 2px solid #8b5e2b;
  box-shadow: 2px 2px 0 #8b5e2b, inset 0 1px 2px rgba(255,240,180,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.controlBtns button:hover {
  background-color: #e6c178;
  box-shadow: 0 0 10px rgba(210, 180, 100, 0.3);
}

#seekBar {
  -webkit-appearance: none;
  appearance: none;
  width: 260px;
  height: 10px;
  background-color: #f0e3c2;
  border: 2px solid #8b5e2b;
  border-radius: 5px;
  outline: none;
  box-shadow: 2px 2px 0 #8b5e2b;
}

#seekBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background-color: #f0e3c2;
  border: 2px solid #8b5e2b;
  border-radius: 50%;
  box-shadow: 2px 2px 0 #8b5e2b;
  cursor: pointer;
}

#seekBar::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background-color: #e6c178;
}
