@font-face {
    font-family: 'MyFont';
    src: url('fonts/comic.ttf') format('truetype');
}
		 
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'MyFont', sans-serif;
    background-color: #f0f0f0;
}

.container {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    height: 100%;
    max-height: 90vh; /* Adjust as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 2em;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Center the buttons horizontally */
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    max-width: 300px; /* Set maximum width for singer buttons */
    box-sizing: border-box; /* Ensure padding is included within the max-width */
    margin: 0 auto; /* Center buttons horizontally */
	font-family: 'MyFont', sans-serif;
	border-radius: 4px;
}

.quit-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
    width: auto; /* Auto width for the quit button */
    max-width: 100px; /* Set a specific max-width for the quit button */
	border-radius: 12px;
}

.song-list {
    display: none;
    margin-top: 20px;
    text-align: left;
}

.song-list ul {
    list-style-type: none;
    padding: 0;
}

.song-list li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.back-button {
    display: none;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.singer-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
