*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero{
    width: 100%;
    height: 6vh;
    display: flex;
    align-items: center;
}

div.track{
    width: 100%;
    height: fit-content;
}

div.seperator{
    width: 100%;
    height: 0.3vh;
    background-color: rgb(191, 191, 191) ;

}

div.playground{
    width: 8.5%;
    height: 16.7vh;
    background-color: #34444e;

}

.background{
    background-color: #653eac;
    width: 100%;
    height: 93.7vh;
}

.background div.grid-container div.grid-item img.expand{
    margin-right: 5.3px;
    margin-left: 2px;
}

.background div.grid-container div.grid-item img.expand:hover{
    cursor: col-resize;
}

.background div.grid-container {
    height: 100%;
    width: 100%;
    display: grid;
    align-content: center;
    justify-content: center;
    grid-template-columns: repeat(41, 0.5fr);
    grid-template-rows: repeat(10, 0.1fr);
}

.background div.grid-container div.grid-item{
    align-content: center;
    border: 1.5px solid #444346;
    background-color: #353436;
}

.background div.grid-container div.grid-item.addTrack{
    align-content: center;
    width: 20vh;
    color: #fff;
    font-size: small;
    text-align: center;
    border: 1.5px solid #999999;
    background-color: #653eac;
    transition: 0.5s;
}
.background div.grid-container div.grid-item.addTrack:hover{
    background-color: #7448c6;
    border: 1.5px solid #ffffff;
}

.background div.grid-container div.grid-item:hover{
    background-color: #464548;
    border: 1.5px solid #706e74;
}

div.playgroundsecondary{
    width: 8.5%;
    height: 16.7vh;
    background-color: #2e3e48;

}

nav a{
    text-decoration: none;
    position: relative;
    color: #fff;
    font-size: 17px;
}

nav button{
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    border: none;
    visibility: visible;
}


nav img{
    width: 30px;
}

nav img:hover{
    transform: scale(1.05px);
}

.homeheader{
    min-height: fit-content;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}

nav input.theBpm{
    border: none;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    align-items: center;
    background-color: #9c6bf6;
    align-content: center;
    width: 55px;
    height: 30px
}

nav input.name{
    border: none;
    font-size: 16px;
    color: #fff;
    text-align: center;
    align-items: center;
    background-color: #9c6bf6;
    align-content: center;
    width: 175px;
    height: 30px
}

nav{
    background-color: #9055FF;
    height: 6vh;
    width: 100%;
    position: absolute;
    padding: 20px 8%;
    top: 0;
    left: 0;
    display:  flex;
    align-items: center;
    justify-content: space-between;
}

nav h3{
    text-decoration: none;
    font-weight: lighter;
    position: relative;
    color: #fff;
    font-size: 17px;
}

.slidecontainer {
    width: 100%; /* Width of the outside container */
}

.slider {
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    accent-color: #ffffff;
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

nav ul li{
    color: #fff;
    position: relative;
    list-style: none;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
}

ul{
    display:  flex;
    align-items: center;
}

ul.context{
    z-index: 2;
    border: 2px solid #000000;
    border-radius: 5px;
    flex-direction: column;
    visibility: hidden;
    width: 150px;
    padding-left: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #2e2d2f;
    position: fixed;
}

ul.context li.context-link{
    border-radius: 5px;
    list-style-type: none;
    justify-items: center;
    align-items: center;
    color: white;
    width: 100%;
    cursor: pointer;
    border-bottom: 1.5px solid #464548;

    display: flex;
}

ul.context li.context-link span{
    width: 80%;
    padding: 0.75em 1em;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

ul.context li.context-link:hover{
    background-color: #444346;
}