body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url('background.jpg'); /* Path to your background image */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
}
#header {
    background-color: #000000; /* Semi-transparent background for better readability */
    padding: 20px;
    color: white;
}
h1 {
    margin: 0;
    font-size: 1.5em;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}
#transcription {
    margin-top: 20px;
    font-size: 1.2em;
    padding: 10px;
    width: 80%;
    max-width: 400px;
    min-height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background for better readability */
}
button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out; /* Add animation */
}
button:hover {
    background-color: #45a049;
    transform: scale(1.05); /* Add hover animation */
}
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for better readability */
    color: white;
    padding: 10px 0;
}
.logo img {
    max-width: 100%;
    height: auto;
}
