/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #BDD9BF;
    text-align: center;
    margin: 0;
    padding: 0; 
}

/* Header styles */
h1 {
    color: #F17F29;
    margin-top: 20px;
}

/* Form styles */
form {
    margin-top: 20px;
}

label {
    font-size: 18px;
    color: #114B5F;
}

input[type="text"] {
    width: 200px;
    padding: 10px;
    margin: 5px;
    border: 2px solid #114B5F;
    border-radius: 5px;
    font-size: 16px;
}

button[type="submit"] {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #F17F29;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Feedback styles */
p {
    font-size: 18px;
    color: #ff6600;
    margin: 5px 0;
}

/* correct guess style */
h2 {
    font-size: 24px;
    color: #114B5F;
    margin-top: 20px;
}

/* Play again link */
a{
    display: inline-block;
    margin-top: 10px;
    color: #F17F29;
    text-decoration: none;
    font-size: 18px;
}

a.play-again:hover {
    text-decoration: underline;
}
