/* General Page Styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url('chipbackground.png'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header and Footer */
header, footer {
    background: rgba(51, 51, 51, 0.8); /* Slight transparency for readability */
    color: white;
    padding: 1em;
}

main {
    flex-grow: 1;
    color: white; /* Change this to any color you prefer */
}


/* Navigation */
nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
}

/* Main Content */
main {
    flex-grow: 1; /* Ensures footer sticks to bottom */
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

input, textarea {
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}
