/* Global Styles */
#middle {
    text-align: center;
    margin-top: 15%;
}

p {
    font-family: Arial, sans-serif;
}

/* Game Status Styles */
p.yes {
    font-size: 120pt;
    font-weight: bold;
    color: green;
}

p.no {
    font-size: 120pt;
    font-weight: bold;
    color: red;
}

p.notyet {
    font-size: 120pt;
    font-weight: bold;
    color: #FFD700;
}

/* Navigation Links */
#about-link {
    margin-top: 20px;
}

#about-link a {
    color: #666;
}

#back-link {
    margin-top: 40px;
}

/* About Page Content */
.content {
    color: #333;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.4;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 600px) {

    p.yes,
    p.no,
    p.notyet {
        font-size: 80pt;
    }

    .content {
        font-size: 16pt;
        max-width: 90%;
    }

    #middle {
        margin-top: 10%;
    }
}