canvas{
    display: block;
    margin: 10px auto 10px auto;
    border: 1px solid #00eeff;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(47, 53, 50);
}

.h2_style{
    text-align: center;
    font-size: 30px;
    color: #6e85eb;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #00eeff;
    padding: 10px;
    border-radius: 20px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(83, 32, 202, 0.548);
}

.menu_bar{
    display: flexbox;
    justify-content: space-between;
    align-items: center;
    background-color: #0f4447;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgb(47, 53, 50);
    border-radius: 20px;
    margin: 0px 20px;
    width: calc(100% - 40px);
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: white;
    text-shadow: 0 0 10px rgba(83, 32, 202, 0.548);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.menu_bar_item{
    display: inline-block;
    margin: 0px 20px;
    text-decoration: none;
    color: white;
}



footer {
    bottom: 0;
    margin-bottom: 0px;
    margin-top: 20px;
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px 0px 3px 0px;
}


@media (max-width: 600px) {
    .h2_style{
        font-size: 20px;
        width: 80%;
    }
    canvas{
        width: 95%;
        height: auto;
    }
    
}