/* 
   Charles Head
   Chapter 6 CMIS 3500
   Web Programming 1
   5 July 2026
*/

body {
    font-family: Arial, sans-serif;
    background: url('https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Pennsylvania.svg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
}

/* Transparent overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

h1 {
    color: #e6f0ff;
    text-shadow: 1px 1px 3px #000;
}

.game-box {
    background: white;
    padding: 20px;
    width: 450px;
    border-radius: 10px;
    box-shadow: 0 0 10px #bbb;
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    background: #0055aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #003f7d;
}

.button-row {
    text-align: center;
    margin-top: 15px;
}

.button-row button {
    margin: 0 10px;
}

.question {
    margin-bottom: 15px;
}

.answer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.correct {
    background-color: #4CAF50 !important;
    color: white;
}

.incorrect {
    background-color: #d9534f !important;
    color: white;
}

label {
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.error {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.success {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

.link-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.link-btn:hover {
    background: #005fa3;
}

