.flex-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-container > * {
    flex: 1 1 0;
}

.health-bar {
    background-color: white;
    border-style: solid;
    border-color: black;
    height: 1vh;
    width: 100%;
}

.health {
    background-color: greenyellow;
    height: 1vh;
    width: 100%
}

.score-info {
    text-align: left;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.rats-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.rats-container > * {
    flex: 1 1 0;
    border-style: solid;
    border-color: black;
    background-color: white;
    color: black;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.attack-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vh;
}

.attack-container > * {
    flex: 1 1 0;
    background-color: transparent;
    border: none;

}

.attack-row {
    display: flex;
    /*
    border-style: solid;
    border-color: black;
    background-color: white;
    color: rgb(101, 62, 13);
    font-size: 1rem;
    text-align: center;
    aspect-ratio: 1 / 1;
    
    justify-content: center;
    align-items: center;
    */
}

.attack-row > * {
    flex: 1 1 0;
    border-style: solid;
    border-color: lavender;
    background-color: #6A359C;
    color: white;
}

.action-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vh;
}

.action-container > * {
    flex: 1 1 0;
    background-color: transparent;
    border: none;
}

.action-button {
    border-style: solid;
    border-color: black;
    background-color: white;
    height: 10vh;
    font-size: 1.5rem;
}

.message-board-container {
    background-color: white;
    border-style: solid;
    border-color: black;
    font-size: 1rem;
    max-width: 500px;
    width: auto;
    max-height: 25vh;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.home-square {
    background-color: white;
}