.game-name-generator {
text-align: center;
background-color: #000; border-radius: 12px;
padding: 25px;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
margin: 30px auto;
width: 80%;
max-width: 500px;
font-family: 'Arial', sans-serif;
color: #fff;
}
h2 {
font-family: 'Arial Black', sans-serif;
color: #fff;
margin-bottom: 15px;
}
p {
font-size: 16px;
color: #ccc;
margin-bottom: 20px;
} .input-container {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 20px;
}
button {
background-color: #28a745; color: white;
padding: 10px 15px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
background-color: #218838; transform: scale(1.05);
}
input {
width: 70%;
padding: 10px;
font-size: 16px;
border: 2px solid #fff;
border-radius: 8px;
background-color: #222;
color: #fff;
outline: none;
transition: border-color 0.3s ease;
}
input:focus {
border-color: #28a745; }