body {
    background-color: #9146FF;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}

header {
    margin-bottom: 20px;
}

h1, h2 {
    margin: 10px 0;
}

main {
    margin: 20px 0;
}

#intro {
    margin-bottom: 20px;
}

.styled-button {
    background-color: white;
    color: #9146FF;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.styled-button:hover {
    background-color: #E0E0E0;
}

.styled-button:active {
    background-color: #D3D3D3;
}

.rage-button {
    background-color: rgb(255, 0, 0);
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.rage-button:hover {
    background-color: #ff3b3b;
}

.rage-button:active {
    background-color: #5c0000;
}

.tower-button {
    background-color: rgb(0, 94, 5);
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.tower-button:hover {
    background-color: rgb(5, 194, 15);
}

.tower-button:active {
    background-color: rgb(0, 43, 2);
}

.inv-button {
    background-color: rgb(224, 172, 0);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.inv-button:hover {
    background-color: rgb(255, 204, 35);
}

.inv-button:active {
    background-color: rgb(114, 87, 0);
}

#settings {
    margin-bottom: 20px;
}

#chat {
    background-color: #0c0814;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: left;
    height: 300px; /* Ensure a fixed height */
    overflow-y: auto; /* Ensure scrolling is enabled */
}

#messages {
    white-space: pre-wrap;
}

#messages div {
    margin-bottom: 10px;
}

footer {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    background-color: #ffb000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #d68a00;
}