body {
    padding: 0;
    margin: 0;
    font-family: arial;
    background: #fff;
}

#view {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

#view canvas {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.links {
    margin: 25px auto;
    text-align: center;
    font-size: 13px;
}

    .links a {
        color: #2b63ad;
        text-decoration: none;
        font-weight: bold;
    }

.contact {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 25px auto;
    text-align: center;
    font-size: 16px;
    color: #008350;
}

    .contact strong {
        font-weight: bold;
    }

    .contact a {
        color: #008350;
    }

@media (max-width: 700px) {
    .contact {
        font-size: 15px;
        color: #000;
    }
    .links {
        font-size: 15px;
        line-height: 150%;
    }
}