* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(19, 19, 19);
    color: white;
}

#choice-section,
#user-section {
    display: none;
}

.ital {
    font-style: italic;
}

p { white-space: pre; }

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.062);
}

footer {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.363)
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#dialogue-section {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 700px;
    width: 100%
}

li {
    list-style-type: none;
}

#user-msg, .choice-btn {
    margin-left: auto;
}

#bot-msg, #bot-msg2, #bot-msg3 {
    background-color: rgba(97, 98, 116, 0);
    color: whitesmoke;
    display: flex;
    width: fit-content;
    padding: 0.7rem;
    border: 1px solid rgba(245, 245, 245, 0);
    border-radius: 25px;
    margin-bottom: 1.3rem;
}

#bot-msg2 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.choice-btn {
    background-color: rgb(207, 207, 207);
    color: rgb(0, 0, 0);
    display: flex;
    width: fit-content;
    padding: .4rem .6rem;
    border: 1px solid rgba(245, 245, 245, 0);
    border-radius: 10px;
    margin-bottom: 0.2rem;
}
.choice-btn:hover {
    cursor: pointer;
    background-color: rgb(180, 180, 180);
}
.red-btn:hover {
    background-color: rgb(206, 141, 141);
}


#user-msg {
    background-color: rgba(45, 45, 48, 0.911);
    color: whitesmoke;
    display: flex;
    width: fit-content;
    padding: 0.7rem;
    border: 1px solid rgba(245, 245, 245, 0);
    border-radius: 25px;
    margin-bottom: 1.3rem;
}

#input-section {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    margin-top: auto;
    height: 120px;
}


#input-section textarea {
    flex: 1;
    background-color: rgb(27, 27, 27);
    border-radius: 25px;
    border: rgba(255, 255, 255, 0);
    color: rgba(245, 245, 245, 0.808);
    padding: 1rem;
    resize: none;
}

#input-section textarea:focus {
    outline: none;
}

header p {
    color: rgba(245, 245, 245, 0.664);
    font-size: 14px;
}

header h1, header p {
    cursor: pointer;
}

#psst {
    color: rgba(241, 170, 88, 0.774);
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
}