body {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; 
    color: white; 
}

input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border: 2px solid #555;
    border-radius: 5px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
}

h3{
    color:red
}

#play_button {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #007BFF; 
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#play_button:hover {
    background-color: #0056b3; 
    transform: scale(1.1); 
}

#play_button:active {
    background-color: #003f7f; 
    transform: scale(1); 
}

#play_area {
    background-color: black;
    border: 2px solid #fff; 
    margin-top: 20px;
}
