html {
  font-family: 'Roboto', sans-serif;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center; /* horizontálně */
  align-items: center;     /* vertikálně */
  text-align: center;
  background-color: #f5f5f5; /* volitelné pozadí */
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.container {
  max-width: 500px;
  padding: 20px;
}

.custom-button {
  display: inline-block;
  border: 1px solid #c00;          /* červený rámeček */
  color: #c00;                     /* červený text */
  background: transparent;
  border-radius: 999px;            /* úplné zaoblení */
  padding: 8px 16px;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  transition: background-color 0.2s, color 0.2s;
}

.custom-button:hover {
  background-color: #c00;          /* výplň po najetí */
  color: white;
}