* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {

    font-family: "Pixelify Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.content-center img {
    max-width: 240px;
}

.content-center {
    text-align: center;
    color: rgb(0, 0, 0);
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.content-center h1 {
    font-size: 30vw;
    font-weight: 300;
    font-family: "Pixelify Sans", serif;
}

.content-center p {
    font-weight: 100;
    font-size: 22px;
    font-family: "Pixelify Sans", serif;
    letter-spacing: 2px;
}

.wrapper {
    background: #ffffff;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error {
    font-size: 100px;
    margin-bottom: 1px;
}



.animation-examples.one {
    color: #000000;
    outline: 4px dashed #dcdcdc;
    box-shadow: 0 0 0 4px #000000;
    animation: 1s animateBorderOne ease infinite;
    padding: 10px 20px;
}

@keyframes animateBorderOne {
    to {
        outline-color: #000000;
        box-shadow: 0 0 0 4px #dcdcdc;
    }
}