/* 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." */
   
   /*
   kolor ciemnozielony: #224736
   kolor jeszcze ciemniejszy zielony: #0b3920
   kolor ciemnoszary: #191919
   
   */

@font-face {
    font-family: "hack"; 
    src: url("/fonts/Hack-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "windows"; 
    src: url("/fonts/Windows Regular.ttf") format("truetype");

}


body {
  background-color: #191919;
  background-image: url(other_backgrounds/tlo_blog.jpg);
  background-size:cover;
  background-attachment: fixed;
  background-position: left;
  background-repeat: no-repeat;

  
  color: white;
  font-family: hack;
  margin: 0%;
  padding: 0%;
  border: 0%;
  
}

aside {
  box-sizing: border-box;
  background-color: #0b3920;
  color: white;
  font-family: hack;
  width: 140px;
  height: 100%;
  padding-right:0px;
  padding-left: 15px;
  float: left;
  text-align: left;
  position: fixed;
  top: 0; /* Stay at the top */
  left: 0;
}

.main {
  margin-left: 160px;
  margin-right: 20px;  
  max-width: 1000px;
  min-width: 100px;
}

header{
  display: block;
  overflow: auto;
}

/*nawigacja i linki */

nav{
  margin-top: 40px;
}

a{
  text-decoration: none;
  color: white;
  margin: 0%;
}

a:hover{
  text-decoration: underline;
}
a:active{
  color:lightgreen;
}

.link_nav{
  font-family: hack;
  font-size: 0.8em;
  margin-left: 20px;
}

.link_hack{
  font-family: hack;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0%;
}

/*tekst*/

h1 {
  margin: 0%;
}

h2{
  margin: 0%;
}

h3{
  margin: 0%;
}

p{
    margin: 0%;
    font-size: 1.4em;
}

.table_width_box{
  background-color:#7c2e62;;
  color: white;
  display: table;
  font-family: hack;
  margin-top: 0px;
}

.text_box{
  box-sizing: border-box;
  background-color: #7c2e62;
  display: table;
  padding: 5px;
  width: 1000px;
  font-size: 0.8em;
  
}

.h1_menu{
    font-size:1em;
    margin: 0;
}

.p_margin_left{
  margin-left: 40px;
}

.column{
  float: left;
  width: 50%;
}

.column_a {
  float: left;
  width: 75%;
}

.column_b {
  float: right;
}

.link_download{
  text-decoration: underline;
}

.link_h3 {
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
}

.link_h3:hover{
  background-color: #4075e7;
}

::selection {
  
  background: #4e80ec;
}
