.pokemon-dialog {
    margin: 20px auto;

    width: 60%;
    min-height: 20px;
    border: 1px solid black;
    border-radius: 5px;
    font-family: system-ui;
    font-weight: 500;
    min-width: 200px;
    position: relative;

    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 16px;
        cursor: pointer;
    }

    .close-button:hover {
        color: red;
    }

    .pokemon-dialog-text {
        font-size: 20px;
    }

    .answer-container{
        display:none;
    }
}