body{
    background:#1c1b17;
    font-family:Arial;
    color:white;
    text-align:center;
}

.game-container{
    width:500px;
    margin:auto;
    margin-top:100px;
    background:#2c2a24;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 20px black;
}

h1{
    color:gold;
}

#riddle{
    margin:20px;
    font-size:18px;
}

input{
    padding:10px;
    width:70%;
}

button{
    padding:10px 20px;
    background:gold;
    border:none;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:orange;
}

#result{
    margin-top:15px;
    font-weight:bold;
}
#winScreen{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:black;
display:none;
align-items:center;
justify-content:center;
z-index:1000;
}

#winImage{
max-width:80%;
}














/* Egyptisch menu */
.egypt-menu {
    background: rgba(212,175,55,0.95);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.egypt-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.egypt-menu ul li a {
    text-decoration: none;
    color: #3e2c14;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    transition: 0.3s;
}

.egypt-menu ul li a:hover {
    color: gold;
    text-shadow: 1px 1px 0 #a67c00;
    transform: translateY(-2px);
}














/* Achtergrond */
body {
    background: url("room3foto.jpg") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}