/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
}

#introScreen {
    background-image: url('images/FrontPage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#game {
    margin: 50px auto;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#gameScreen, #resultScreen {
    display: none;
}

button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}

button:hover {
    background-color: #0056b3;
}

@media (min-width: 600px) {
    button {
        width: auto;
        font-size: 24px;
    }
}
.start-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.start-button:hover {
    background-color: #0056b3;
}
