
button {
    background-color: #161616;
    cursor:pointer;
    padding:8px;
    border:none;
    color:white;
    border-radius: 10px;
    transition: 0.3s;
}

canvas {
    background-color: white;
    width: 100%;
    height: 70vh;
    border-radius: 8px;
    flex:1;
}


input {
    background-color: #131313;
    border:none;
    border-radius: 20px;
    
    resize: none;

    padding:10px;
    box-sizing: border-box;
    color:White;
    font-family: Comfortaa;
    font-weight: 900;
    transition: 0.4s;
    font-size:17px;
    width: 20%;
    margin-bottom:5px;
}
input:focus{
    outline: 2px solid rgb(34, 34, 34);
}