*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(24, 23, 23);
    color: white;
}


.container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
}
.container::before{
    content: '';
    background: url('./img/back5.png') no-repeat center  center/cover;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    opacity: 0.8;
}
/* Glitch */
.heading{
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    margin: 3rem 2rem;
    padding: 0px 2px;
    letter-spacing: 1.2rem;
    position: relative;
}
.heading::before,
.heading::after{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.heading::before{
    color: #FF00C1;
    animation: glitch 3s infinite;
}
.heading::after{
    color: #3498db;
    animation: glitch 2s infinite;
}

@keyframes glitch{
    0%{
        top: -3px;
        left: -1px;
    }
    25%{
        top: 2px;
        left: 3px;
    }
    50%{
        top: -1px;
        left: 4px;
    }
    75%{
        top: 3px;
        left: 0px;
    }
    100%{
        top: 0px;
        left: -1px;
    }
}
/* input */
.kick input,
.snare input,
.hihat input{
    width: 1.7rem;
    height: 1.7rem;
    margin: 1rem;
    cursor: pointer;
}
.btn{
    font-size: 2rem;
    border: 1px solid white;
    border-radius: 7px;
    padding: 0px 26px;
    outline: none;
    cursor: pointer;
    background: none;
    color: white;
    margin: 36px 15px;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}
.btn:hover{
    transform: scale(1.03);
    color: wheat;
}

/* bands */
.bands h3{
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    display: inline-block;
    text-align: center;
}
