/* Fonts :)*/

@font-face {
    font-family: Concept-Medium;
  src: url(Concept-Medium.ttf);
}

@font-face {
  font-family: SourceCodePro;
  src: url(SourceCodePro-Medium.ttf);
}

/* Nav Elements :)*/
li a {
    color: white;
    
}

li{
    list-style: none;
    font-family: SourceCodePro;
    padding-bottom: 50px;
    text-decoration: underline;

   
    
}

nav p{
    font-family: SourceCodePro;
}
/* Anchor Elements :)*/

a {
  text-decoration: none;
  color: black;
}

/* Header Elements :)*/

/* img Elements :)*/

/* Search box (Its not functional yet because i have not implemented all of my pages/forums) also btn=button :)*/
.search-box {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: inline;
  
}
.input-search {
  height: 15px;
  width: 15px;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  letter-spacing: 2px;
  outline: none;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  padding-right: 40px;
  background-color: black;
  color: black;
  display: inline;
}
.input-search::placeholder {
  color: black;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
  display: inline;
}
.btn-search {
  width: 200px;
  height: 200px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color: #ffffff;
  background-color: transparent;
  pointer-events: painted;
  display: inline;
}

.btn-search:focus ~ .input-search {
  width: 300px;
  border-radius: 1px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
  display: inline;
}
.input-search:focus {
  width: 300px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
  display: inline;
}

button {
  background: transparent;
  border: transparent;
  font-size: larger;
}

* {
  box-sizing: border-box;
}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  margin: 0;
}
.outer-col-1 {
  background: black;
  flex: 1;
  color: white;
  
}
.outer-col-2 {
  display: flex;
  flex-direction: column;
  flex: 5;
}
.inner-row {
  display: flex;
  flex-direction: row;
}
.inner-col {
  flex: 4;
}
.inner-row article {
  min-height: 60vh;
  font-family: SourceCodePro;
}
.inner-row aside {
  background: black;
  flex: 1;
  color: white;
  text-align: center;
  
  
  
}
header,
footer {
  background: white;
  height: 20vh;
}
header,
footer,
article,
nav,
aside {
  padding: 1em;
}

header div {
  float: right;
}

footer p {
    font-family: SourceCodePro;
    text-align: center;
}
footer li{
    font-family: SourceCodePro;
    text-align: center;
}

aside button{
    color: white;
    font-family: SourceCodePro;
    cursor: pointer;
}
aside header{
    background-color: black;
    color: white;
    font-family: SourceCodePro;

}
/* Slideshow stuff */
