* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
    display: grid;
}
.main-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: grid;
    justify-content: space-around;
    border: 8px groove green;
}
/* main css components */
.top {
    width: 97.8vw;
    height: auto;
    display: flex;
    justify-content: space-between;
    /*padding-bottom: 40px; */
    position: relative;
    border-top: 3px ridge brown;
    border-left: 3px ridge brown;
    border-bottom:3px ridge brown;
}
.top_left, .top_right {
    width: 45vw;
    height: auto;
    position: relative;
    top: 10px;
    display: flex;
}
span {
    position: relative; 
    left: 2%;
    font-family: "limelight", "sans-serif";
    font-weight: 200;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: red;
    border: 3px solid red;
    border-radius: 10px;
    height: 6vh;
    width: 20vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center; 
}
.adsrbx{
    display: flex;
    letter-spacing: 5px;
    position: relative;
    top: 95%;
    width: 10vw;
    height: auto;
}
.abox {
    width: 2vw;
    height: 10vh;
}
.mid {
    width: 97.8vw;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    /*top: 2%;*/
    justify-content: space-around;
    /*padding: 10px;*/
    border-top: 3px ridge brown;
    border-left: 3px ridge brown;
    border-bottom:3px ridge brown;
}
.topbx, .btmbx {
    display: flex;
    justify-content: space-around;
    position: relative;
}
.topbx {
    bottom: 20px;
}
.btmbx {
    top: 20px;
}
.drumpadbox {
    width: 22vw;
    height: 25vh;
    border: 3px solid #402510;
    position: relative;
    right: .5%;
    border-style: groove;
    border-radius: 5px;
    align-content: center;
}
.drumpadbox2 {
    width: 22vw;
    height: 25vh;
    border: 3px solid #402510;
    border-style: groove;
    border-radius: 5px;
    position: relative;
    align-content: center;
}
.drumpad {
    width: 8vw;
    height: 7vh;
    border: 3.5px double black;
    border-style: groove;
    border-radius: 15px;
    background-image: linear-gradient(to right, rgba(255, 134, 102), rgba(255,0,0,1));
}
.center-piece {
    width: 50vw;
    height: 25vh;
    left: 25%;
    display: flex;
    justify-content: center;
    border: groove;
    background-color: yellow;
    overflow: hidden;
    margin: 0;
}
.gorilla {
    width: auto;
    height: 17vh;
    position: fixed;
}
.brand-name {
    letter-spacing: 10px;
    font-family: "Fascinate Inline", system-ui, sans-serif;
    font-style: normal;
    position: relative;
    top: 75%;
}
.btm {
    width: 97.8vw;
    height: auto;
    position: relative;
    border-top: 3px ridge brown;
    border-left: 3px ridge brown;
    border-bottom:3px ridge brown;
}
.key-container {
    width: 51vw;
    height: 12vh;
    border-top: 10px transparent;
    border-style: groove;
    border-color: darkgreen;
    background-color: white;
    display: flex;
    position: relative;
    left: 25%;
    top: 45%;
}
.wcell {
    width: 5.2vw;
    height: auto;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    position: relative;
}
.bcell {
    width: 1.3vw;
    height: 6.5vh;
    background-color: black;
    position: fixed;
    position: relative;
}
/* End */





