/* CSS Document */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #bc8a5f;
}

h1{
  margin-top: 25px;
  font-size: 100px;
  height: 150px;
  font-family: coffee-latte, sans-serif;
}


h2{
  font-size: 50px;
  margin: 10px;
  font-family: coffee-latte, sans-serif;
}

ul{
  margin: 0;
}

p, li{
  font-size: 19px;
  margin: 10px;
  text-align: justify;
  font-family: roboto, sans-serif;
}

img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

header {
  height: 100px;
  background-color: #ffedd8;
  color: #583101;
  text-align: center;
  line-height: 70px;/* Zabezpe�� vertik�lne zarovnanie textu */
  width: 100%;
}

button{
  width: 200px;
  height: 50px;
  margin-bottom: 15px;
  border: 0;
  background-color: #d4a276;
  font-size: 15px;
  font-family: big-coffee, sans-serif;
}

.container {
  display: flex;
  flex: 1;
  width: 100%;
}

nav {
  width: 200px;
  background-color:#f3d5b5;
  margin-top: 10px;
  margin-bottom: 10px;
}

section {
  flex: 1;
  background-color: #bc8a5f;
  overflow: auto;
}

article {
  margin: 10px;
  background-color: #ffedd8;
}

.text{
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

footer {
  height: 20px;
  background-color: #a47148;
  text-align: center;
  width: 100%;
}

@font-face {
  font-family: coffee-latte;
  src: url(fonts/Coffe\ Latte.ttf);
}

@font-face {
  font-family: big-coffee;
  src: url(fonts/KGColdCoffee.ttf);
}

@font-face {
  font-family: roboto;
  src: url(fonts/Roboto.ttf);
}

@media screen and (max-width: 1300px) {
  main {
    max-width: 950px;
  }
}

@media screen and (max-width: 800px) {
  main {
    max-width: 600px;
  }
  .container {
    flex-direction: column;
  }
  nav, section {
    width: 100%;
  }
}

