*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sacramento', cursive;
    font-weight: bold;
}

#container{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas{
    position: absolute;
    z-index: 2;
}

#canvas1{
    position: relative;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1;
}

#uploadfile{
    display: none;
}

#button{
    position: absolute;
    border: none;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    padding: 100px;
    background: darkblue;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    user-select: none;
}