* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

p.description {
    text-align: left; /* Left-aligns the paragraph text */
}

audio {
    margin-top: 20px;
    width: 100%;
}

.credits {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
}
