

body{
    min-width:100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    background-color: #aca3a3;
    font-family: sans-serif;
    text-align: center;
}

#defaultCanvas0
{
    box-shadow: 2px 2px 18px #000;
} 

select
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    padding: 0.5em 1.2em;
    border-radius: 3px;
    background-color: #000000cc;
    color:#ffffff;
    cursor: pointer;
    box-shadow: 1px 1px 4px #000;
    backdrop-filter: blur(3px);
    border: none;
    transition: 300ms;
    outline: none;
}

select:hover{
    box-shadow: 1px 1px 7px #000;
}

select:active{
    transform: scale(1.02);
}



 






