#svgContainer {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
}

input[type=range] {
    -webkit-appearance: none;  
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px; 
    height: 25px; 
    background: #586E75; 
    cursor: pointer;
    border-radius: 50%; 
}

.flashcards button {
  background-color: #ffffff;
  border: 1px solid #3f7083;
  border-radius: 30px;
  box-shadow: #3f7083 4px 4px 0 0;
  color: #3f7083;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.flashcards button:hover {
  background-color: #edf9f9;
}

.flashcards button:active {
  box-shadow: #e29772 2px 2px 0 0;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .flashcards button {
    min-width: 120px;
    padding: 0 25px;
  }
}

.p {
    font-size: smaller;
}

