@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap');

.h1, .p {
    font-family: 'JetBrains Mono', monospace;
}

body {
    background-color: #232D3F;
}

#container {
    left: 15%;
    top: 50px;
    position: absolute;
    border-style: solid;
    border-width: thick;
    border-color: rgb(65, 75, 78);
}

#characterNameBox {
    left: 25%;
    position: fixed;
    min-width: 50%;
    min-height: 50px;
    max-width: 50%;
    max-height: 50px;
    font-size: x-large;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    margin: 650px auto auto auto;
    outline-color: black;
    outline-style:solid;
}

#characterImage {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

#dialogueBoxImage {
    min-width: 25%;
    min-height: 250px;
    position: absolute;
    margin-top: 0px;
    left: 5px;

}

#dialogueBoxText {
    min-width: 70%;
    min-height: 210px;
    max-width: 70%;
    max-height: 210px;
    font-family: 'JetBrains Mono', monospace;
    font-size: x-large;
    position: absolute;
    white-space: pre-wrap;
    right: 5px;
}

#dialogueBoxButtons {
    min-width: 70%;
    min-height: 30px;
    position: absolute;
    bottom: 0px;
    right: 5px;
    display: grid;
    grid-template-columns: auto auto;
    place-content: space-between;
}

#dialogueBox {
    left: 25%;
    position: fixed;
    bottom: 1px;
    min-width: 50%;
    min-height: 250px;
    outline-color: black;
    outline-style:solid;
}

#choiceOneButton {
    border: 0px;
    height: 30px;
    width: 175px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    background-color: #8ebc83;
}

#choiceOneButton:hover {
    border: 0px;
    height: 30px;
    width: 175px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    background-color: #839d6d;
}

#choiceTwoButton {
    border: 0px;
    height: 30px;
    width: 175px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    background-color: #8ebc83;
}

#choiceTwoButton:hover {
    border: 0px;
    height: 30px;
    width: 175px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
    background-color: #839d6d;
}