    /* <div class="header">
        <img src="../assets/dices.svg" alt="Dice Icon">
        <h1>Dice Roller</h1>
    </div>
    <div class="result"></div>     */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.result {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    gap: 10px;
    padding: 10px;

    & > img {
        height: 80px;
    }
}
