/* A CSS file that uses a dark theme with red and white/yellow as primary colors, and a military-style font. */

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Gungsuh', 'Serif';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    border: 2px solid #ff0000;
    padding: 40px;
    background-color: #000000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

h1 {
    color: #ff0000;
    font-size: 48px;
    margin-top: 0;
    text-shadow: 2px 2px 4px #000;
    letter-spacing: 4px;
}

.subtitle {
    color: #ffff00;
    font-size: 20px;
    margin-bottom: 30px;
}

#visualizer {
    background-color: #0a0a0a;
    border: 1px solid #ff0000;
    margin-bottom: 30px;
}

#recordButton {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 24px;
    font-family: 'Gungsuh', 'Serif';
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    text-shadow: 1px 1px 2px #000;
}

#recordButton:hover {
    background-color: #cc0000;
}

#recordButton:active {
    transform: scale(0.98);
}

#recordButton.recording {
    background-color: #00ff00;
    color: #000000;
}

#result {
    margin-top: 40px;
    padding: 20px;
    border: 1px dashed #ffff00;
    min-height: 100px;
}

#result h2 {
    color: #ffff00;
    font-size: 24px;
}

#resultName {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
}

#analysisText {
    color: #ffff00;
    font-size: 18px;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.5;
}

.footer p {
    margin-top: 40px;
    font-size: 28px;
    color: #ff0000;
}
