html {
  transform: scale(1);
  transform-origin: 0 0;
}

body{
  padding-left: 250px;
  padding-right: 250px;
  background-color: rgb(9, 8, 24);
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

div{
  padding: 0;
  margin: 0;
}

.nadpis{
  border: 2px solid rgb(83, 83, 100);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 6px;
  background-color: rgb(21, 23, 34);
}

.logo{
  color: white;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
    /* gradient */
  background: linear-gradient(90deg, #0d00ff, #0059ff, #0091ff);

  /* prohlížeče založené na WebKitu (Chrome, Safari, novější Edge) */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Firefox a některé další */
  background-clip: text;
  color: transparent;
}

.nadpis-odkazy{
  color: white;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  height: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  border-radius: 7px;
  transition: background-color 0.15s;
  padding-left: 5px;
  padding-right: 5px;
}

.nadpis-odkazy:hover{
  background-color: rgb(53, 62, 78);
}

.grid-of-selections{
  margin-top: 100px;
  /*border: solid 1px rgb(229, 255, 0);*/
  height: 70px;
  display: grid;
  grid-template-columns: 120px 120px 120px 120px 120px;
  column-gap: 5px;
}

.selection{
  height: 100%;
  border: 2px solid rgb(83, 83, 100);
  color: white;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  z-index: 100;
  transition: background-color 0.15s;
}

.selection:hover{
  background-color: rgb(21, 23, 34);
}

.selection-image{
  height: 40px;
  margin-bottom: 5px;
}

.sellected{
  border-bottom: 2px solid rgb(167, 167, 167);
  background-color: rgb(21, 23, 34);
}

.project-window{
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 30px;
  border: rgb(83, 83, 100) solid 2px;
  color: white;
  margin-top: 2px;
  background-color: rgb(21, 23, 34);
}