/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

   /* quick and dirty:
    padding refers to internal space (between text and border)
    margins refer to external space (between element border and element border)

    # preface div id; . preface div class (subsection of a div id)


   */

   /* Font import for Roboto */
   @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background-color: black;
    font-family: 'Roboto';
    width: 900px;
    margin: auto;
    padding: 5%;
    color: #BFFFF7;
}

/*.flex-container{
  display:flex;
  background-color: #fff;
}*/



#div{
  display: block;
}

#header{
    position: relative;
    margin: auto;
    padding: 20px;
    text-align: center;

}

.flex-container{
  display: flex;
  flex-direction: row;
}

.flex-container > div{

}

.sidebar img{
    height: 250px;
    width: 150px;
    box-shadow: 0px 0px 10px #1CCD81;
}

#sidebar_l{
    background-color:#000;
    width: 25%;
    height: 250px;
    margin-top: 10px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: #152922;
    border-width: thin;
    text-align: center;
}

#sidebar_r{
    background-color:#000;
    width: 25%;
    height: 250px;
    margin-top: 10px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: #152922;
    border-width: thin;
    text-align: center;
}

#codec-outer{
    width: 50%;
    height: 242px;
    align-self: center;
    border-top-style: solid;
    border-width: thin;
    border-color: #152922;
}

#codec {
    width: 100%;
    height: 242px;
    text-align: center;
    align-self: flex-start;
    background-color: #000;
    border-color: #152922;
    border-width: thin;
}

#title {
    align-self: flex-start;
    padding-top: 3px;
    margin: 5px;
    height: 50px;
    margin-bottom: 5px;
    border-color: #152922;
    background-color: #0B1713;
    border-width: thin;
}

#bottom-text p{
  background-color: #0B1713;
  color: #BFFFF7;
  width: 50%;
  animation-name: blink;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

#bottom-text a{
  color: #BFFFF7;
  font-weight:bold;
}

#codecimg img{
  margin-top: 10px;
  margin-bottom: -10px;
  width: 100%;
}

#nav{
    background-color: #000;
    margin-top: 10px;
    padding: 20px;
    padding-top: 0px;
    border: solid;
    border-color: #152922;
    border-width: thin;
}


#navtable{
  width: 100%;
  height: 200px;
  border-bottom: thin solid;
  border-color: #152922;
  border-collapse:collapse;
  border-width: thin;
  color: #22453A;
  font-size: 20px;
  padding:10px;

}

#navtable p{
  color: #fff;
  font-size: 15px;
  text-transform: none;
  font-weight: normal;
}

#codecfreq{
  background-color: #0B1713;
  display: inline;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 10px;

}

th{
  border-bottom: solid;
  border-width: thin;
  border-color: #152922;
  width: 50%;
}

th, td{
  padding: 20px;
  padding-left: 50px;
  padding-top:5px;
  padding-bottom: 0px;
  text-transform: uppercase;
  text-align: left;
}

a{
  text-decoration: none;
  font-weight: 400;
  color: inherit;
}

a:hover{
  color: #BFFFF7;
  text-shadow: 0px 0px 5px #13ffb2;
  font-weight: 700;
}

h1 {
  font-size: 20px;
  text-transform: uppercase;
}

ul{
  list-style: none;
  color: #fff;
  font-weight:normal;
  font-size:15px;
}

ul li:before{
  content: '\2605';
  margin: 5px;
}

@keyframes blink {
  25% {
    font-color: #BFFFF7;
    text-shadow: 0px 0px 10px #EBFFFC;
    }
  }

}
