/* CSS Document */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

header {
  height: 50px;
  background-color: #FFB5A7;
  color: #e06d58;
  text-align: center;
  line-height: 10px; /* Zabezpečí vertikálne zarovnanie textu */
  width: 100%;
}
h1 {
    font-family: Monaco, monospace;
    font-weight: normal;

}

.container {
  display: flex;
  flex: 1;
  width: 100%;
}

nav {
  width: 200px;
  background-color: #FCD5CE;
  text-align: center;
}

.button {
  background-color: #F8EDEB;
  border: none;
  color: #ba9f9b;
  padding: 15px 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: Monaco, monospace;
}
.button:hover {
  text-decoration: line-through;

}

.button2 {
    background-color: #F8EDEB; /* Green */
  border: none;
  color: #ba9f9b;
  padding: 15px 35px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: Monaco, monospace;
}
.button2:hover {
  text-decoration: line-through;

}

.button3 {
    background-color: #F8EDEB;
  border: none;
  color: #ba9f9b;
  padding: 15px 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: Monaco, monospace;
}
.button3:hover {
  text-decoration: line-through;

}

.button4 {
    background-color: #F8EDEB;
  border: none;
  color: #ba9f9b;
  padding: 15px 29px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: Monaco, monospace;
}
.button4:hover {
  text-decoration: line-through;

}

.button5 {
    background-color: #F8EDEB;
  border: none;
  color: #ba9f9b;
  padding: 15px 33px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: Monaco, monospace;
}
.button5:hover {
  text-decoration: line-through;

}

section {
  flex: 1;
  background-color: #F9DCC4;
  overflow: auto;
}

article {
  margin: 30px;
  margin-top: 40px;
  font-family: Monaco, monospace;
}

p {
    text-indent: 20px;
    line-height: 1;
    font-size: 20px;
}
li {
    text-indent: 20px;
    line-height: 2;
    font-size: 20px;
}

img {
    float: right;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

a {
    color: #855a36;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

footer {
  height: 40px;
  background-color: #FEC89A;
  text-align: center;
  width: 100%;
  font-family: Monaco, monospace;
}

@media screen and (max-width: 1300px) {
  main {
    max-width: 950px;
  }
  img {
    width: 600px;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
  }
  
}

@media screen and (max-width: 800px) {
  main {
    max-width: 600px;
  }
  .container {
    flex-direction: column;
  }
  nav, section {
    width: 100%;
  }
  img {
    width: 500px;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

