#canvas {
    display: block;
    position: absolute;
    top: 0px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

#info {
    display: flexbox;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: absolute;
    float: right;

    width: 30vw;
    

    margin: 50px;
    padding: 20px;

    border-radius: 10px;
    border-style: solid;
    border-width: 5px;
    border-color: aquamarine;

    background-color: rgba(0, 139, 139, 0.715);
    color: azure;
    font-size: 2vh;
    
    
}

#info h2 {
    display: flex;
    text-align: left;
    justify-self: center;

    padding: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;

    background-color: rgb(0, 139, 139);
    color: azure;
}
#info p {
    display: flex;
    text-align: left;
    justify-self: center;

    padding: 10px;
    border-radius: 10px;

    background-color: rgb(0, 139, 139);
    color: azure;
}

#info img {
    display: flex;
    width: 25vw;
    padding: 0%;
    align-self: center;
    justify-self: center;

    border-style: solid;
    border-width: 3px;
    border-color: darkturquoise;
    border-radius: 10px;
}

body {
    display: flexbox;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}