body {
    background-image: url('../images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: cursive;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

button {
    background-color: #8AC926;
    border-color: black;
    border-style: solid;
    border-width: 2px;
    font-family: inherit;
    font-size: 32px;
    padding: 15px;
    text-align: center;
    border-radius: 25px;
}

button:hover {
    filter: brightness(0.8);
}

h1 {
    text-align: center;
}

input {
    background-color: #FFCA3A;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 32px;
    padding: 15px;
    border-radius: 25px;
}

.response {
    background-color: white;
}

.red-text {
    background-color: #FF595E;
    padding: 15px;
    border-radius: 25px;
}

.centered-div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.group-div {
    border-color: #FF595E;
    border-style: solid;
    border-width: 2px;
    border-radius: 25px;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 16px;
    transition: background-color 0.2s ease;
}

.alternative-box {
    background-color: #FFCA3A;
    padding: 16px;
    border-radius: 25px;
}

.right-button {
    align-self: flex-end;
    font-size: 16px;
}

.tiny-button {
    font-size: 16px;
    padding: 7px;
}

.small-button {
    font-size: 16px;
}

.small-red-button {
    font-size: inherit;
    background-color: #FF595E;
}

.small-input {
    background-color: white;
    font-size: 16px;
    padding: 7px 7px;
    width: auto;
}

.box {
    border-color: black;
    border-style: solid;
    border-width: 2px;
    border-radius: 25px;
    background-color: #FFCA3A;
    padding: 16px;
    scrollbar-color: black #FFCA3A;
    display: flex;
    flex-direction: column;
    height: 64vh;
    width: 32vw;
}

.messages {
    flex: 1;
    overflow-y: scroll;
}

.container {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
}