/* Old school retro style */
body {
    background-color: #e7e7e7dc;
    font-family: "Courier New", Courier, monospace;
    color: #000080;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

header {
    background-color: #ffcc00;
    text-align: center;
    padding: 20px;
    border-bottom: 3px solid #000080;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 900;
    text-shadow: 2px 2px #000080;
    letter-spacing: 2px;
    text-transform: uppercase;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 1px 1px #000080;
    letter-spacing: 1px;
}

.underline {
    text-decoration: underline;
}

.subtitle {
    font-weight: 700;
}

.search-section {
    text-align: center;
    margin: 20px 0;
}

.search-section input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
    border: 2px solid #000080;
    background-color: #fffacd;
}

.search-section button {
    padding: 5px 10px;
    font-size: 1em;
    border: 2px solid #000080;
    background-color: #00ffff;
    cursor: pointer;
}

.guides {
    text-align: center;
    margin-top: 30px;
}

.guides ul {
    list-style-type: none;
    padding: 0;
}

.guides li {
    margin: 10px 0;
}

/* Simple, static retro-style links */
.retro-link {
    display: inline-block;
    padding: 12px 40px; /* taller and wider */
    min-width: 200px;   /* ensures all boxes are same width */
    text-align: center; /* center text inside box */
    font-weight: bold;
    font-family: "Courier New", monospace;
    color: #000080;
    background-color: #fffacd;
    border: 2px solid #ff0000;
    text-decoration: none;
}

a {
    color: #000080;
    font-weight: bold;
}

a:hover {
    color: #000061;
    text-decoration: underline;
    font-weight: bolder;
}

img {
    border-radius: 10px;
    border: 4px solid #0000e7;
}

.center {
    text-align: center;
    align-items: center;
}

.stepimage {
    width: 700px;
    height: 500px;
}

.code {
    background-color: rgba(104, 104, 104, 0.403);
    font-family: "Courier New", monospace; /* monospace */
    padding: 5px 5px;
    border-radius: 5px;       /* rounded corners */
    white-space: pre-wrap;    /* preserve line breaks */
    overflow-x: auto;         /* horizontal scroll if long */
    font-size: 0.9em;
}
