.container {
    height: 720px;
    width: 720px;
    border: 5px solid;
    border-radius: 8px;
    margin: 0 auto;
}

.playfield {
    display: flex;
    margin: 0 auto;
    width: 90%;
    height: 95%;
    flex-direction: column-reverse;
}

.textbox {
    border: 2px solid black;
    margin: 5px;
    font-size: 1.5em;
    padding: 10px;
    height: 100px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    overflow-y: hidden;
}

#textbox {
    display: inline;
}

.postava {
    filter: drop-shadow(0 0 1rem lightgray);
}

.postavaContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly
}

.buttonContainer {
    display: flex;
    flex-direction: row;
}

.button {
    flex-grow: 1;
    text-align: center;
    margin: 5px;
    border: 2px solid black;
    width: 50%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
}

.topText {
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid black;
    border-radius: 8px;
    display: inline-block;
}
