@font-face {
    font-family: 'LED-Dots';
    src: url(fonts/led-counter-7/led_counter-7.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    display: flex;
    justify-self: center;
    align-self: center;
}


html, body {
    margin: 0px;
    padding: 0;
    height: auto;
    width: 1180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0b0b0b;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#row1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* <--- heel belangrijk */
    align-items: center;
    width: 100%; /* nodig zodat hij de hele breedte pakt */
}

#title {
  text-align: left;
  width: 100%;
}

#title-text {
    font-family: 'LED-Dots', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.1em;
}

.input-button {
    font-size: 2rem;
    padding: 1rem 2rem;
    margin: 1rem;
    background-color: #1E1E1E;
    color: rgb(25, 58, 112);
    border: none;
    border-radius: 5px;
}

#row1, #row2, #row3, #row4,#row5 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#CD-tracks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 230px;
}

.track {
    min-width: 32px;
    min-height: 24px;
    transform: rotate(-10deg);
    border-radius: 50%;
    background-color: transparent;
    border: white 2px solid;
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.track p {
    transform: rotate(10deg); /* draai de tekst terug */
    display: inline-block;
    color: white;
    font-size: 14px;
    margin: 0;
}

#middle-line {  
    height: 224px; /* zelfde hoogte als equalizer */
    border-left: 4px dotted white;  
    margin: 0 auto; 
    transform: rotate(10deg);
}

#middle-line-inverted {  
    height: 224px; /* zelfde hoogte als equalizer */
    border-left: 4px dotted white;  
    margin: 0 auto; 
    transform: rotate(-10deg);
}

.dot-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* ruimte tussen puntjes */
  height: 200px;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
}

#visualizer {
margin: -80px;
}

#sound-modes ul {
    list-style: none;
    padding: 0;
}

.sound-mode {
    padding-left: 1.5em;
    position: relative;
}

.sound-mode.selected::before {
    content: "";
    background-image: url("img/red_arrow.png"); 
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-top: 1px; /* pijl ff iets naar beneden */
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
}

#row2 {
    gap: 8px;
}

#a-bass-ex-light, #live-surround-light, #sound-mode-light, #stereo-light {
    background-color: rgb(217, 0, 0);
    color: black;
    margin: 2px;
    padding: 4px;
    border-radius: 4px;
}