*{
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100vh;
    background-color:  black;
    font-family:'Times New Roman', Times, serif;
}
#header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: powderblue;
}
a{
    padding: 50px;
    color: midnightblue;
    text-decoration: none;
    
    font-weight:700;
    font-size: 25px;
}
#canvascont{
    width: 100%;
    height: 100%;
    position: relative;
}
#canvas{
    border-style: solid;
    border-color: blue;
    background-color: lightseagreen;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}
