html, body { margin: 0; }

body {
    font-family: sans-serif ;
    font-size: large;
    background-color: #000000;
    padding: 20px;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .image {
    width: 100%;
    text-align: center;
  }
  
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }
  
  .buttons a {
    text-align: center;
    text-decoration: none;
    padding: 20px;
    width: 70%;
    background-color: #000000;
    color:  #faf4eb;
    border: 1px solid  #faf4eb;
    border-radius: 5px;
  }

  a:hover {
    background-color:  #faf4eb;
    color: #000000;
  }
  a:active {
    background-color:  #faf4eb;
    color: #000000;
  }

  #bottom {
    background-color: #000000; /* barva ozadja */
    text-align: center;
    padding: 0px;
    font-size: 14px;
    color: #faf4eb;
    position: fixed;
    bottom: 10px;
    width: 100%;
    left: 0; right: 0;
  }
  
  
  
  
  