.kids-alphabet-container { 
     max-width: 600px;
     margin: 0 auto;
     text-align: center;
     font-family: Arial, sans-serif;
}

.alphabet-buttons {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-top: 20px;
}

.alphabet-button {
     flex: 1 0 18%;
     background-color: #3498db;
     border: none;
     color: white;
     padding: 15px 0;
     font-size: 20px;
     cursor: pointer;
     border-radius: 8px;
     transition: background-color 0.3s ease, transform 0.2s ease;
}

.alphabet-button:hover {
     background-color: #2980b9;
     transform: scale(1.05);
}

.alphabet-video {
     margin-top: 25px;
}
