

:root {
  --font-color-default: #dddddd;
  --link-color-default: rgb(200, 100, 200);
}

body {
    overflow-anchor: none;
    color:#444444;
    background-color:#dddddd;
    background-image: linear-gradient(#dddddd, #dddddd, rgb(255, 170, 255));
    
    line-height:1.6;
    font-size:18px;
    font-family: Sans-Serif;
}

h1, h2, h3 {
    color:#444444;
    line-height:1.2;
}

p {
    margin-top: 50px;
}
    
pre {
    color: #444444;
    line-height:1.3;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

hr {
    border: none;
    height: 4px;
    background-color: #eeeeee;
    background-color: #aaaaaa;
}

a:link {
    color:var(--link-color-default);
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: var(--link-color-default);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color:rgb(255, 130, 250);
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color:var(--link-color-default);
    background-color: transparent;
    text-decoration: none;
}

.footer {
    text-align: center;
    font-size: 90%;
}

.all-content {
    max-width: 640px;
    margin: auto;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-col {
    padding: 15px;
    flex: 50%;
}



