body {
    background-color:lightgray;
}

#gameGrid {
    display: grid;
    grid-template-rows: 10% 35% 45% 10%;
    justify-items: center;
    justify-self: center;
    height: 70dvh;
}

#header-box {
    width: 500px;
    height: 100%;
    border: 2px solid darkgray;
    background-color: white;
    margin-top: 50px;
    text-align: center;
}

#header {
    color:blue;
    font-size: 2.5rem;
    font-family: fantasy;
    margin-top: 10px;
}

#button-row {
    width: 500px;
    height: 80px;
    border: 2px solid darkgray;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    background-color: white;
    margin-top: 30px;
}

#button1 {
    width: 150px;
    height: 40px;
    background-color: blue;
    color:white;
    font-size: 1.3rem;
    border-radius: 8px;
}

#button2 {
    width: 150px;
    height: 40px;
    background-color: blue;
    color:white;
    font-size: 1.3rem;
    border-radius: 8px;
}

#picture-box {
    width: 500px;
    height: 100%;
    border: 2px solid darkgray;
    margin-top: 50px;
    background-color: white;
    overflow: hidden;
}

#picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#text-box {    
    width: 500px;  
    height: 200px; 
    border: 2px solid darkgray;
    margin-top: 50px;
    background-color: white;    
}

#puzzle-title {
    color: blue;
    font-size: 1.5rem;
    margin-top: 10px;
    text-align: center;
}

#puzzle-text {
    width: 430px;
    height: 130px;
    font-size: 1rem;
    color: black;
    margin-top: 12px;
    margin-left: 30px;
    border: 2px solid white;
}

#answerDialog[open] {   
    display: flex;
    flex-direction:column; 
    background-color:aliceblue;
    width:400px;
    height:500px;
    text-align: center;
    align-items: center;
    justify-content: space-evenly;
}

#closeAnswer {
    width: 80px;
    height: 40px;
    background-color: blue;
    color:white;
    text-align: center;
    border-radius: 6px;
    border: 2px solid black;
}

#answer-title-head {
    color: blue;
    font-size: 2rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#right-wrong {
    font-size: 1.5rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

#answer-text {
 width: 340px;
 height: 200px;
 border:none;
  font-size: 1rem;
  color:black;
  background-color: aliceblue;
}

#answer-text:focus {
    outline: 1px solid aliceblue;
}
