canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

body {
    font-size: 24px;
    color: rgb(0, 0, 0);
}

a:link {
    color: green;
}

a:hover {
    color: blue;
}

#content {
    float: right;
    width: 50%;
}

h1 {
    font-weight: bold;
    text-align: center;
}

h2 {
    font-weight: bold;
    text-align: center;
}

h3 {
    font-weight: bold;
    text-align: left;
}

p {
    background-color: rgba(255, 255, 255, 0.5);
    border: 5px;
    border-color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 600px) {

    #content {
        float: none;
        width: 100%;
    }

}