body {
    background-color: #222;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 20px;
}

.centered {
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.item {
    background-color: #333;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    width: 80%;
    max-width: 1000px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
}


input {
    width: 300px; /* Change the width to your desired value */
    padding: 3px; /* Add some padding to make it look nicer */
    font-size: 16px; /* Increase the font size if needed */
  }
  
  ::placeholder {
    color: rgb(255, 255, 255); /* Change the color to your desired value */
  }






.image-container {
    position: relative;
    display: inline-block;
  }
  
.text-list {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: rgb(43, 43, 43);
padding: 10px;
width: 200%;
list-style: none;
margin: 0;
z-index: 1;
}

.image-container:hover .text-list {
display: block;
}

.text-list li {
width: 100%;
padding: 5px 0;
}












.column {
    display: flex;
    flex-direction: column; /* stack child elements vertically */
    text-align: center;
}

p.message {
    margin: 0;
    flex-grow: 1;
    margin-right: 20px;
}

input{
    display: block; /* Make the button a block element */
    margin: 0 auto; /* Center the block element horizontally */
    background-color: rgb(77, 77, 77);
    color: white;
}

button {
    background-color: rgb(132, 0, 255);
    border: none;
    color: white;
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    display: block; /* Make the button a block element */
    margin: 0 auto; /* Center the block element horizontally */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.monkas-image {
    border-radius: 10px;
    margin-left: auto;
}
.monkas-image:active {
    filter: brightness(0.8) saturate(1.2);
}