h1{
    margin-top: 20px;
    color: white;
    font-family: monospace;
}
p{
    color: white;
    font-family: monospace;
}
button {
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #929090;
    color: #f9f9f9;
    font-family: monospace;
}

.ozellik{
    padding-bottom: 15px;
    width: 100%;
    border: 4px solid #000000;
    background-color: #0b6666d3;
}

#runeContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.rune {
    width: 170px;
    height: 170px;
    border: 1px solid #000;
    margin: 5px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
    background-image: url(../img/tasim.jpeg);
}

.rune:hover {
    transform: scale(1.1);
}

.rune.revealed {
    transform: scale(1.5);
    background-color: #f9f9f9;
}
#answer {
    margin-top: 20px;
    font-size: 35px;
    text-align: center;
    font-family: monospace;
    line-height: 1;
    white-space: pre-line; 
    color: #f9f9f9;
}
