* {
    box-sizing: border-box;
}

html {
    font-size: 150%;
    font: inherit;
}

body {
    margin: 0;
    padding: 0;
    animation: blink 0.1s infinite;
    animation-direction: reverse;
}

.header {
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.header img {
    max-height: 6rem;
}

/* 
@keyframes blink {
    0%{ background-color:white; } 
    100%{ background-color:black;} 
} */

.container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 75%;
    max-width: 700px;
    margin-bottom: 3rem;
    /* transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);  */
    /* overflow-y: scroll;
}
    .info-text, .header {
    /* color: #3f3; */
    /* text-shadow: 2px 2px 2px #33f; */
    /* background-color: #fffa; */
    
    /* box-shadow: 4px 4px 5px white; */
    /* padding: 0.15rem; */
}


.info-text {
    font-size: 1.25rem;
    /* color: #33f;
    text-shadow: 2px 2px 2px #3f3; */
}

.bg-img {
    z-index: -1;
    position: fixed;
    /* transform-origin: ; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: exclusion;
}

img.bg-img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.fix-img img {
    position: fixed;
    width: 10%;
    top: 1.2rem;
    left: 0.5rem;
}

/* DRUM MACHINE */
.music-box{
    width: 100%;
    max-width: 260px;

}
.panel{
    /* display: block; */
    height: 35%;
    background-color: #ccc;
    color: #00f;
    border: solid 2px #000;
    margin: 1rem;
    padding: 1rem;
    box-shadow: 5px 5px #f33;
}

.knobs-input{
    font-family: Courier, monospace;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.beat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px;
    font-size: 2rem;
    border-bottom: solid 2px black;
    word-break: break-all;
}

.claps{
    height: 98vh;
    overflow: hidden;
    visibility: hidden;
}

/* FOOTER */
.footer {
    width: 75%;
    max-width: 750px;
    margin: auto;
    margin-bottom: 3rem;
    
}

.footer--menu {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
}

.footer--menu li {
    margin-right: 1rem;
}

@media all and (max-width: 750px) {
    html{
        font-size: 75%;
    }
    .header{
        word-break: break-all;
    }
  }