* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  flex: 0 0 15%;
  background: #c39b5d;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  padding: 0.5rem;
}

header img {
  max-height: 80%;
  max-width: 90%;
  height: auto;
  width: auto;
  object-fit: contain;
}

main {
  flex: 1;
  background: white;
  overflow-y: auto;
  display: flex;
  justify-content: center;  /* vízszint közép */
  align-items: flex-start;  /* tartalom mindig felülről indul */
  padding: 1rem;
}

.content {
  max-width: 80%;
  width: 100%;
  margin: auto;
}

footer {
  flex: 0 0 5%;
  background: #c39b5d;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  min-height: 40px;
  font-size: clamp(0.8rem, 2vw, 1rem);
    font-family: sans-serif;
}

@media (max-width: 600px) {
  header {
    min-height: 70px;
  }
  header img {
    max-height: 70%;
  }
  footer {
    min-height: 35px;
  }
}

h1 {
    font-family: sans-serif;
    font-size: 32px;
    font-weight: 900;
}

th,td,button,input {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 6px;
    padding: 6px;
}

input {
    font-weight: 100;
}

.pure-button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    color: #fff;
    border: none rgba(0, 0, 0, 0);
    background-color: #c39b5d;
    text-decoration: none;
    border-radius: 2px;
}

.help-text {
        font-family: sans-serif;
        font-size: 16px;
        text-align: justify;
    line-height: 1.5;
}

.status-text {
        font-family: sans-serif;
        font-size: 20px;
        text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

ul{
  margin-left:30px;
}

