html {
    height: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
    color: #ffffff; /* Set text color to white for all elements */
}

body {
    font-family: 'Source Code Pro', monospace;
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

header {
    font-family: 'Silkscreen', sans-serif;
    background-color: #7f1d9f;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-family: 'Silkscreen', sans-serif;
    margin: 0;
}

h2 {
    font-family: 'Silkscreen', sans-serif;
    margin: 0;
}

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

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff; /* Keep nav links white */
    text-decoration: none;
}

section {
    background-color: #555555;
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    flex-direction: column; /* Stack children vertically */
}


section a {
    color: #00AA00; /* Make links within sections green */
    text-decoration: underline; /* Underline links within sections by default */
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background-color: #333333;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.buy-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.buy-link-box {
    display: block;
    width: 200px;
    height: 100px;
    line-height: 100px;
    margin: 10px;
    background-color: #00AA00;
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.buy-link-box:hover {
    transform: scale(1.05);
}

form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #555555;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

form label, form input, form textarea, form button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

form input, form textarea {
    background-color: #000000;
    color: #00AA00; /* Changed input and textarea text color to white for readability */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    color: #000000;
    background-color: #00AA00;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

img.center {
    display: block; /* Treat the image as a block-level element */
    /* Additional styling can be added here if needed */
}

.silkscreen-regular {
    font-family: "Silkscreen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.source-code-pro {
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
