/* Font */
@font-face {
    font-family: '3270 Nerd Font';
    src: url('fonts/3270NerdFontMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Body / page */
body {
    font-family: '3270 Nerd Font', monospace;
    background-color: #151610;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* vertical stacking starts at top */
    min-height: 100vh;
    text-align: center;
    padding: 2em 1em; /* optional spacing from edges */
}

/* Main wrapper */
main {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers content horizontally */
}

/* ASCII art */
pre {
    color: #d6dbe6;
    text-align: center;
    margin: 0 0 1em 0;
}

/* Headings */
h2, h3 {
    color: #d6dbe6;
    margin: 0.5em 0;
}

/* Blended image (fake edge fade with inset shadow + border-radius) */
.blended-image {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 1em 0;
    border-radius: 20px; /* rounded corners */
    box-shadow: inset 0 0 80px 40px #151610; /* fake soft edge */
}
