html{
    height: 100%;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;

}

#explanation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 10px;
}

#canvas{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#button{
    width: 50%;
    left: 80%;
    top: 80%;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: 10px;
}

@media only screen and (max-width: 1000px) {
    body{
        flex-direction: column;
        height: 1000px;
    }
    
    #explanation{
        height: 500px;
    }

    #canvas{
        width: 500px;
        height: 500px;
    }

    #button{
        height: 100px;
    }

}