html,
body {
    padding: 0;
    margin: 0;
}

body {

    background-color: #18120D;
    color: #fff;

    font-family: Verdana, Geneva, Tahoma, sans-serif;

    background-repeat: repeat;

    text-align: center;

}

div {
    display: flex;
    flex-direction: row;
    padding-top: 25px;
    padding-bottom: 25px;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}

div>* {
    flex-shrink: 0;
    flex-grow: 0;
}

section {
    padding: 150px 0;
    border-top: 3px solid #888;
    border-bottom: 3px solid #555;
    background-repeat: repeat;
}

section#minecraft {
    background-image: url('img/bg-texture.png');
}

section#space {
    background-image: url('geocities-nonsense/space/bgstar.gif');
}

section#jesus {
    background-image: url('geocities-nonsense/jesus/frost2.gif');
}

section#cock-pills {
    background-image: url('geocities-nonsense/cock-pills/bg.png');
}

section div>* {
    padding: 5px 15px;
}

a {
    color: aqua;
    animation: blink 1s linear infinite;
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}