* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tektur", sans-serif;
    font-weight: 300;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: block;
}

h1,
p {
    width: fit-content;
    max-width: 66%;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f0f0ff;
    font-family: Arial, sans-serif;
    text-align: center;
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
    margin-left: 64px;
    margin-right: 64px;
    background-color: #000000;
}

.container {
    min-width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    min-width: 100%;
}

.content,
.intro {
    border: solid 2px #4d4848;
    padding: 32px;
    border-radius: 10px;
    line-height: 1.4;
    display: grid;
    place-items: center;

}

.intro {
    margin-top: 32px;
    margin-bottom: 8px;
    min-width: 100%;
}

.content {
    margin: 8px;
    margin-left: auto;
    margin-right: auto;
}

img {
    margin-top: 16px;
    width: 100%;
    height: auto;
    max-width: 360px;
}

@media only screen and (max-width: 820px) {
    body {
        margin-left: 0;
        margin-right: 0;
    }

    p {
        max-width: 90%;
    }
}

@media only screen and (min-width: 820px) {
    .image-container:first-child {
        margin-left: 0;
    }

    .image-container a {
        padding-left: 16px;
    }
}