*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body{
  background: #0f0f0f;
  color: #fff;
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* NADPIS */
h1{
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #d6c08d;
}

/* NADPIS */
h1{
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #d6c08d;
  width: 100%;
}
button{
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background: #d6c08d;
  color: #111;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: "Inter", system-ui, sans-serif;
}

button:hover{
  transform: scale(1.02);
  background: #cdb37d;
}

button:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

/* REMOVE BUTTON (item) */
.item button{
  width: auto;
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 13px;
  background: transparent;
  border: 1px solid #d6c08d;
  color: #d6c08d;
  border-radius: 8px;
}

.item button:hover{
  background: #d6c08d;
  color: #111;
}

/* HLAVNÍ NAV BUTTONY (pokud jsou uvnitř a) */
a button{
  width: 100%;
  background: #d6c08d;
  color: #111;
}

a button:hover{
  background: #cdb37d;
  transform: scale(1.02);
}

/* layout tlačítek vedle sebe */
a{
  display: inline-block;
  width: 48%;
  margin-top: 20px;
}

/* vedle sebe (poslední dva odkazy) */
body > a:nth-last-of-type(2),
body > a:last-of-type{
  display: inline-block;
}
@media (max-width:425px){

  body{
    padding:20px 12px;
  }

  h1{
    font-size:24px;
    margin-bottom:20px;
  }

  /* tlačítka a odkazy -> vždy pod sebe */
  a{
    display:block;
    width:100%;
    margin-top:12px;
  }

  button{
    width:100%;
    padding:14px;
    font-size:15px;
    border-radius:12px;
  }

  /* item remove button */
  .item button{
    width:100%;
    padding:10px;
    font-size:13px;
  }

  /* zrušení "vedle sebe" layoutu */
  body > a:nth-last-of-type(2),
  body > a:last-of-type{
    display:block;
  }
}