/* div {
    background-color: black;
} */

:root {
    --controls-width: 600px;
    --main-color: rgb(89, 94, 94);
}


body{
    background-color: cornflowerblue;
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
}

h1 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.drum-machine-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6vh;
}

.effects-controls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 5px solid var(--main-color);
    border-bottom: 0;
    border-radius: 5px;
    width: var(--controls-width);
    padding: 5px;
    background-color: rgb(246, 255, 246);
}

.swing {
    margin-top: 15px;
}

.play-pause-stop-buttons {
    border: 5px solid var(--main-color);
    width: var(--controls-width);
    padding: 5px;
    background-color: rgb(246, 255, 246);
    display: flex;
    justify-content: center;
}

.time-button {
    border-radius: 5px;
    width: 50px;
    height: 30px;
    font-size: 15px;
}

.genre {
    position: relative;
    left: -30px;
    width: 150px;
}

.play-pause-button {
    background-color: coral;
}

.stop-button {
    background-color: red;
}

.clear-button {
    background-color: yellow;
}

.drum-machine-most {
    display: flex;
    margin-top: 15px;
    margin-right: 40px;
}

.drum-machine-board {
    background-color: rgb(47, 47, 47);
    width: auto;
    border-radius: 10px;
    padding: 10px;
}

.drum-machine-left-column {
    display: flex;
    flex-direction: column;
    width: 20%;
    height: 458px;
    justify-content: space-around;
    padding-top: 40px;
    margin-right: 10px;
}

.bpm {
    display: flex;
}
.non-bpm {
    display: flex;
}

.top-row {
    display: flex;
}

.top-row-button {
    margin: 10px;
    padding: 2px 5px;
    border: 1px solid gray;
    width: 15px;
    border-radius: 2px;
}

.lit-up {
    background-color: rgb(85, 85, 252);
}

.drum-machine-button {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.button-label {
  margin: 10px;
  padding: 5px;
  border: 1px solid black;
  width: 15px;
  height: 25px;
  border-radius: 5px;
  background-color: rgb(83, 83, 83);
  box-shadow: 0px 2px 2px red;
}

input:checked + label {
  background-color: rgb(228, 121, 121);
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: none;
}

div[class^="full-row"] {
    display:flex;    
}


.footer {
    /* position: fixed; */
    width: 100vw;
    bottom: 0px;
    height: 6vh;
    background-color: rgb(246, 255, 246); 
    border-top: 2px solid rgb(174, 37, 37);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid rgb(246, 255, 246);
}

.links {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(21,82,240);
}

.links:hover{
    color: red;
}

.github-links>* {
    margin-left: 5px;
    margin-right: 5px;
}

.hidden
{
   display: none
}
