html,body{
    width: 100%;
    height: 100%;
}

body{
    background-color:black;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#canvas {
    width:1366px;
    height:600px;
    position:relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


#heading{
    font-family: 'Bubblegum Sans', cursive;
    color:white;
    text-align: center
}

p{
    color: white;
    font-family: 'Baloo', cursive;
}

button{
    border: 1px solid #333;
    outline: none;
    width: 200px;
    height: 50px;
    font-size: 22px;
    background: white;
}

button:hover{
    cursor: pointer;
    border: 2px solid #000;
}