body {
    font-family: 'Comic Sans MS', cursive;
    background-color: #84f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.chat-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.chat-box {
    background-color: #f1f1f1;
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
}

.input-container {
    display: flex;
    gap: 10px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ff9800;
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #e68900;
}

.rickroll{
    height: 50px;
    width: 50px;
    background: #84f7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

.gamimg{
    width: 200px;
    height: auto;
}