html {
    height: 100vh;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(45deg, #1a1c2c, #1a202c);
    background-size: 100%, 100%;
    color: white;
    box-sizing: border-box;
    overscroll-behavior: none;
    
}
* {
    box-sizing: border-box;
}
body {
    margin-top: 50px;
    font-family: "Ubuntu";
    overscroll-behavior: none;
}

#installdiv {
    display: none;
}

#top {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    display: flex;
    height: 40px;
    background: rgba(128, 128, 128, 0.3);
}

.body {
    position: absolute;
    top: 0px;
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.wrapper {
    position: absolute;
    top: 50px;
    margin: 0;
    left:0;
    right: 0;
    bottom: 50px;
    background: rgba(228, 184, 9, 0.055);
}

.body {
    z-index: 1;
}

.wrapper {
    z-index: 2;
}

.item:hover {
    background: yellowgreen;
}
.item {
    display: flex;
    position: relative;
    margin: 0 auto;
    background: rgb(52, 41, 209);
    color:white;
    width: 80vw;
    height: 30px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
}