/*
css pro můj web
*/


a:link {
  color: #7e7fbd;
}

a:visited {
  color: #9c5da8;
}

a:hover {
  color: #b474db;
}

.chord{
  font-weight: bold;
  color: #b474db;
}

body {
  background-color: #1a1a1a;
  color: white;
  font-family: Verdana;
}

.sLogo{
  background-color: #b474db;
  border-radius: 10px;
}

.up{
  background-color: #7e7fbd;
  border-radius: 10px;
}

.aa{
  background-color: #b36b0c;
  border-radius: 10px;
}

.menuBlock{
  width: 60px;
  height: 60px;
  margin: 5px;
  padding-bottom: 10px; /*nevim proc tu zas kua nefunguje margin*/
  font-weight: bold;
  text-align: center;
}

.menuBlock a{
  color: #1a1a1a;
  text-decoration-line: none;
}

.menuBlock a:hover{
  color: #575757;
}

.page{
  margin: 1%;
}

.combiBox{
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
  width: 70%;
}

.menuBox {
  width: 75px;
  display: inline-block;
  vertical-align: top;
  line-height: 60px;
  font-size: 30px;
}

.contentBox {
  width: 82%;
  display: inline-block;
}

.content {
  text-align: justify;
  padding: 60px;
  padding-top: 20px;
  background-color: #2d2636;
  border-radius: 20px;
}

@media screen and (max-width: 800px) {
  .menuBox {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .menuBlock {
    display: inline-block;
  }
  .combiBox{
    width: 100%;
  }
  .content {
    padding: 30px;
    padding-top: 10px;
  }
  .contentBox {
    width: 100%;
  } 
}

