* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Zorg ervoor dat padding en border worden meegerekend in de breedte en hoogte */
}

html, body {
    height: 100%;
}

body {
    background-color: #1e2227;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Zorgt ervoor dat alle elementen onder elkaar worden geplaatst */
    font-family: Arial, sans-serif;
    color: #e9e9e9;
    padding: 20px; /* Voeg wat ruimte toe rond de inhoud */
}

header {
    text-align: center;
    margin-bottom: 20px;
}

#logo {
    width: 100px; /* Pas de grootte van het logo aan indien nodig */
    height: auto;
}

h1 {
    font-size: 36px;
    margin-top: 10px;
}

#chordDisplay {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

#tempoContainer {
    text-align: center;
    margin-top: 20px;
}

label {
    display: block;
    margin: 10px 0;
    font-size: 16px;
}

input[type="text"] {
    width: calc(100% - 20px); /* Zorg ervoor dat het invoerveld netjes past binnen de beschikbare ruimte */
    padding: 10px;
    border: 2px solid #2a4949;
    border-radius: 5px;
    font-size: 16px;
    background-color: #1e2227;
    color: #e9e9e9;
}

select {
    width: calc(100% - 20px); /* Zorg ervoor dat de dropdown netjes past binnen de beschikbare ruimte */
    padding: 10px;
    border: 2px solid #2a4949;
    border-radius: 5px;
    font-size: 16px;
    background-color: #1e2227;
    color: #e9e9e9;
    margin-top: 10px;
}

button {
    padding: 10px 20px; /* Zorg ervoor dat de knoppen groter en gemakkelijker te klikken zijn */
    border: none;
    border-radius: 5px;
    background-color: #2a4949;
    color: #e9e9e9;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:focus {
    outline: none;
}

button#startButton {
    font-size: 18px;
    width: 150px;
    height: 50px;
}

.tempo-controls {
    margin-top: 10px;
}

.tempo-change {
    padding: 6px;
    width: 40px;
    height: 40px;
    background-color: #2a4949;
    border-radius: 100%;
    color: #e9e9e9;
    cursor: pointer;
    margin: 5px;
}

.created-by {
    margin-top: 40px;
    text-align: center;
}

a {
    color: #e9e9e9;
}

a:hover {
    color: #356161;
}

.play {
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 50px solid #e9e9e9;
    margin-left: 15px;
}

.pause {
    width: 15px;
    height: 60px;
    border: none;
    border-left: 15px solid #e9e9e9;
    border-right: 15px solid #e9e9e9;
}