* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "DS";
    src:
            local("Trickster"),
            url("/Users/ema/Desktop/kdokdo/assets/nitrods-font.otf");
}
body, html {
    height: 100%;
    font-family: DS;
    font-size: 13px;
}

#game {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    background-size: cover;
    z-index: 0;
}

.choice-container {
    display: flex;
    gap: 20px;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.choice {
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.choice:hover {
    background-color: #ddd;
}
#character {
    position: absolute;
    width: 300px;
    height: auto;
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#dialogue-box {
    position: absolute;
    bottom: 39%;
    width: 100%;
    padding-left: 200px;
    padding-right: 200px;
    text-justify: auto;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    cursor: pointer;
    z-index: 2;
}
