/*
DARKROOM CSS - Mike Beauchamp - 2025-05-07 - trying to get this done in one night

*/




/*
BROWSER RESET
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
}

body {
    line-height: 1;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}





/*
LAYOUT STUFFS
*/

@font-face {
    font-family: 'FreeMono';
    src: url('FreeMono.eot');
    src: url('FreeMono.eot?#iefix') format('embedded-opentype'),
        url('FreeMono.woff') format('woff'),
        url('FreeMono.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background: none repeat scroll 0 0 #060606;
    font-size: 62.5%;
}


#wrapper {
    background: none repeat scroll 0 0 #000000;
    color: #FFFFFF;
    font-family: 'FreeMono', FreeMono, 'Courier New', Courier, monospace;
    font-size: 3.2em;
    font-weight: normal;
    line-height: 1.5em;
    margin: 0 auto;
    padding-bottom: 30px;
    width: 960px;
}

div.half-fr {
    width: 460px;
    padding: 0 10px;
    float: left;
    margin-bottom: 20px;

}

div.half-en {
    width: 460px;
    padding: 0 10px;
    margin-left: 480px;
    text-align: right;
    margin-bottom: 20px;
}

div.full {
    margin-bottom: 20px;
}

div.recordings {
    text-align: center;
    border: 3px solid red;
    margin-top: 1.7em;
    padding: 1em;
}

audio {

    height: 70px;
}





/* 
TEXTY STUFFS
*/


h1,
h2,
h3 {
    font-weight: bolder;
    line-height: 1.1em;
}

h1 {
    font-size: 1.8em;
    padding: 0 0 .5em 0;
}

h2 {
    font-size: 1.6em;
    padding: 1em 0 .5em 0;
}

h3 {
    font-size: 1.2em;
    padding: 1em 0 .5em 0;
}



a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: underline;
}

a:hover {
    color: red;
}

#content a {
    background: #F7F5F3;
}

#content a:hover,
#content a:focus {
    background: #FFFFFF;
}

p {
    margin: 1em 0 2em;
}

ul,
ol {
    margin: 1.5em 0 1.75em 3em;
    padding-left: 2em;
}

li {
    margin: 0 0 0.5em;
}

ul {
    list-style-type: disc;
}

ul ul {
    list-style-type: circle;
}

ol {
    list-style-type: decimal;
}

blockquote,
code {}

code {}

/* clear <div class="clear">&nbsp;</div> */
.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}




/*
HEADER STUFFS
*/

#header {

    height: 220px;
}

#header #logo {
    margin: 40px 10px;
}





/* 
CONTACT FORM STUFFS
*/

p.contacterror,
p.contactsuccess {
    background: #FF0000;
    padding: 5px;
    margin: 0 10px 15px 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    text-align: center;
}




#contactForm {
    display: block;
    margin: 30px 10px 80px 10px;


}

#contactForm label {

    width: 940px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

#contactForm input,
#contactForm textarea {
    background: none repeat scroll 0 0 #444444;
    border: 2px solid #FF0000;
    color: #FBFAF8;
    font-family: 'FreeMono', FreeMono, 'Courier New', Courier, monospace;
    margin: 20px auto 0 auto;
    padding: 5px 0;
    width: 500px;
    display: block;
    font-size: 1em;
}


#contactForm input.error,
#contactForm textarea.error {
    border: 2px solid #cd0000;
}


#contactForm input.submit {
    background: none repeat scroll 0 0 #FF0000;
    font-family: 'FreeMono', FreeMono, 'Courier New', Courier, monospace;
    color: #000000;
    cursor: pointer;
    font-size: 1em;
    margin: 30px auto 0 auto;
    padding: 5px 10px;
    width: auto;
}

#contactForm input.submit:hover {
    border: 2px solid #FFFFFF;
}