
/* ------ TOP ------ */
#header {
  position: fixed;
  //position: absolute;
  top:0px;left:0px;
  padding: 0px;
  width: 100%;  
  height: 170px;
  border: 0px;
  overflow:hidden;
  z-index: 10;
}

#content {
  margin-top:200px;
  width: 100%;  
  border: 0px;
}
#apps {
  position: fixed;
  top:170px;
  left:10px;
  padding: 0px;
  width: 150px;  
  overflow-y:auto;
  overflow-x:hidden;
}
/* ------ FONTS ------ */
@font-face {
  font-family: "Computer Modern";
  src: url('../css/cmunss.otf');
}
@font-face {
  font-family: "Computer Modern";
  src: url('../css/cmunsx.otf');
  font-weight: bold;
}
@font-face {
  font-family: "Computer Modern";
  src: url('../css/cmunsi.otf');
  font-style: italic, oblique;
}
@font-face {
  font-family: "Computer Modern";
  src: url('../css/cmunbxo.otf');
  font-weight: bold;
  font-style: italic, oblique;
}
@font-face {
  font-family: "Pinyon";
  src: url('../css/PinyonScript-Regular.ttf');
}
@font-face {
  font-family: "Soopafre";
  src: url('../css/soopafre.ttf');
}

/* ------ LINKS ------ */
a {
  color: #b06521;
}
a:link {
  color: #b06521;
}
a:visited {
  color: #b06521;
}
a:hover {
  color: #b06521;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* ------ BASIC ------ */
body {
  background-color: #000;
  color: #ddb27e;
  margin: 0;
  font-family: Computer Modern;
  font-size: 16px;
  position: relative;
}

.thumbnail{
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.thumbnail:hover {
  opacity: 0.7;
  z-index: -1;
}
/* ------ CODE ------ */
.code{
  font-family: Verdana;
  border: 2px ridge whitesmoke;
  margin: 15px;
  width: 700px;
  font-size: 12px;
  font-style: italic;
  padding: 10px;
  color: black;
  background-color: lightgrey;
}

.OutlineText {
  color: #b06521;
  text-shadow:
  -1px -1px 0 #ddb27e,
  1px -1px 0 #ddb27e,
  -1px 1px 0 #ddb27e,
  1px 1px 0 #ddb27e,  
  -2px 0 0 #ddb27e,
  2px 0 0 #ddb27e,
  0 2px 0 #ddb27e,
  0 -2px 0 #ddb27e;
}
hr {
    border: none;
    border-top: 3px double #333;
    color: #333;
    overflow: visible;
    text-align: center;
    height: 5px;
}
.h1 {
  widht: 100%;
  font-size: 55px;
  font-weight: bold;
}
.h2 {
  widht: 100%;
  font-size: 35px;
}
.h3 {
  widht: 100%;
  font-size: 22px;
}
.h4 {
  widht: 100%;
  font-size: 18px;
  font-weight: bold;
}
/* ------ COLUMN ------ */
.row {
  overflow: auto;
  width: 1050px;
  height: 530px;
  line-height: 530px;
}
.columnL {
  float: left;
  width: 512px;
  height: 100%;
  text-align: right;
  justify-content: right;
  display: flex;
  align-items: center;
}
.columnR {
  float: right;
  width: 512px;
  height: 100%;
  text-align: left;
  justify-content: left;
  display: flex;
  align-items: center;
}
.Valign{
  line-height: normal;
}
.columnD {
  float: left;
  width: 160px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 5px;
  
  /*border-top: solid white 1px;*/
  border-right: solid white 1px;
}
.columnTitleL {
  float: left;
  width: 250px;
  padding-left: 15px;
}
.columnTitleR {
  display: inline-block;
  float: right;
  width: 512px;
  padding-left: 0px; 
}
