@charset "utf-8";

/*
  CIS166AA Section 30402
  Author: Lindsey Jessup
  Date:   1/27/2019

  Filename: styles.css

*/

/*  ==========================
       HTML and Body styles
    ==========================
 */
html {
  font-family: Verdana, Geneva, sans-serif;
  min-height: 100%;
}
body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  background: url("../media/background.jpg") left top no-repeat;
  background-attachment: fixed;
  background-size: 4000px;
  margin: 15px auto;
  min-width: 340px;
  max-width: 1200px;
  width: 100%;
  min-height: 100%;
  border-left: 15px solid rgba(51, 51, 51, .8);
  border-right: 15px solid rgba(51, 51, 51, .8);
  border-radius: 15px 50px 30px;
}

/*  ==========================
          Header styles
    ==========================
 */
header {
  border-radius: 15px 50px 30px;
}
header img#logoImg {
  display: block;
  margin: 15px auto auto 15px;
  width: 20%;
}
header, footer {
  background-color: rgba(255, 255, 255, .7);
  color: rgba(0,255,0, 0.8);
  position: relative;
  width: 100%;
}
header > h1 {
  display: block;
  position: absolute;
  margin: 0px auto;
  right: 10px;
  top: 20px;
  text-align: right;
  font-size: 4.3em;
  letter-spacing: 0.05em;
  font-family: fantasy, serif;
  font-weight: bold;
  text-shadow: rgb(51, 51, 51) 12px 12px 8px;
}

/*  ==========================
           Main Styles
    ==========================
 */
main {
  background-color: rgba(255, 255, 255, .7);
  color: rgb(51, 51, 51);
  padding: 15px 15px 60px 15px;
  border-radius: 15px 50px 30px;
  width: 100%;
  margin-top: 15px;
}
main h2 {
  font-size: 3em;
  margin: 10px;
  text-align: center;
  text-shadow: rgb(51, 51, 51) 8px 8px 15px;
}
main h3 {
  font-weight: bold;
}
.dawArticle {
  float: left;
}
.mediumText {
  font-size: 1.5em;
}
li {
  margin: 15px 0;
  font-weight: bold;
}
ul li.answer {
  list-style-type: none;
  font-weight: normal;
  margin-left: 15px;
}
legend {
  font-weight: bold;
}
blockquote p::first-letter {
  font-size: 300%;
  font-family: Courier;
}
.quote {
  font-family: Courier;
}

/*  ==========================
        Audio/Video styles
    ==========================
 */
.audioLabel {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  font-weight: bold;
  margin-top: 15px;
  text-shadow: rgb(51, 51, 51) 2px 2px 5px;
}
audio {
  margin-left: 15px;
  border-radius: 15px 50px 30px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
    
}
.video {
  display: block;
  margin: 15px auto 15px auto;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
  width: 80%;
}

/*  ==========================
          Image styles
    ==========================
 */
figure {
  display: block;
  float: right;
  margin: 20px;
  width: 500px;
}
figure img {
  display: block;
}
figcaption {
  text-align: center;
}
img {
  display: -webkit-flex;
  display: flex;
  border-radius: 15px 50px 30px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
  margin: 15px;
}
#signalChain {
  width: 500px;
  float: right;
}
#me {
  width: 350px;
  margin: 0px 15px 15px auto;
  position: relative;
  float: top;
}
#tubePreAmp {
  width: 500px;
  float: right;
}
.daws {
  width: 400px;
  float: right;
  clear: right;
}

/*  ==========================
      Navigation list styles
    ==========================
 */
header nav.horizontal {
  text-shadow: rgb(51, 51, 51) 4px 4px 4px;
  width: 100%;
  -webkit-flex: 1 1.5;
  flex: 1 1.5;
}
body header nav ul {
  margin-top: 15px;
  list-style-type: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
nav.horizontal ul li {
  -webkit-flex: 1 1;
  flex: 1 1;
}
nav.horizontal ul li a {
  margin-left: 0px;
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: rgba(51, 51, 51, 0.9);
  text-align: center;
  text-decoration: none;
}
nav.horizontal ul li a:hover {
  background-color: rgba(51,204,255, 0.8);
  text-shadow: rgb(51, 51, 51) 2px 2px 2px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
  transition: all ease-in-out .2s;
  border-radius: 15px 50px 30px;
}

/*  ==========================
          Footer Styles
    ==========================
 */
footer {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.8);
  border-radius: 15px 50px 30px;
}
footer a:hover {
  color: rgba(0,255,0, 0.8);
  transition: all .2s;
}

/*  ==========================
           Form Styles
    ==========================
 */
form {
  display: inline;
  float: left;
  text-shadow: rgb(51, 51, 51) 4px 4px 3px;
}
form div {
  margin: 10px;
}
form div input, select {
  margin-left: 60px;
  width: 250px;
  border-radius: 3px 8px 5px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
}
form div input:focus, select:focus, textarea:focus {
  background-color: rgba(0,255,0, 0.8);
  transition: all .2s;
}
form div textarea {
  margin-left: 60px;
  width: 250px;
  height: 100px;
  border-radius: 3px 8px 5px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
}
form div.buttons {
  margin-left: -15px;
}
input[type="submit"], input[type="reset"] {
  height: 30px;
  width: 130px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 3px 8px 5px;
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
  text-shadow: rgb(51, 51, 51) 2px 2px 3px;
}
input[type="submit"]:hover, input[type="reset"]:hover  {
  background-color: rgba(51,204,255, 0.8);
  transition: all ease-in-out .2s;
}

/*  ==========================
           Table Styles
    ==========================
 */
table, thead, tr, td {
  border: 1px solid rgb(51, 51, 51);
}
table {
  background-color: rgba(51, 51, 51, .8);
  color: rgba(0,255,0, 0.8);
  box-shadow: rgb(51, 51, 51) 10px 10px 10px;
}
table caption {
  color: rgb(51, 51, 51);
  font-weight: bold;
}
td {
  background-color: rgba(255, 255, 255, .6);
  color: rgb(51, 51, 51);
}
