/***************************************************************************/
/* index.cs											                              					   */
/* torocsik.net															                               */
/* 2026.01.07 07:35:10													                           */
/***************************************************************************/

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 2px;
  padding: 2px;
  padding-bottom: 6rem;
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: blanchedalmond;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

@media only screen and (max-width: 800px) {
  body {
    background-color: NavajoWhite;
  }
}

@media only screen and (max-width: 500px) {
  body {
    background-color: DarkOliveGreen;
  }
}

body:before {
  content: "";
  height: 100%;
  float: left;
  width: 0;
  margin-top: -32767px;
}

body > div {
  margin-top: 24px;
  margin-bottom: 24px;
  font-weight: bold;
}

body > p {
  text-align: center;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 36px;
  margin-bottom: 2px;
}

header {
  color: #fff;
  padding: 10px 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background-color: #61adf7;
}

main {
  float: left;
  clear: left;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding-left: 1em;
  background-color: Lavender;
}

aside {
  float: right;
  clear: right;
  width: 5%;
  height: 100%;
  min-height: 3400px;
  background-color: PowderBlue;
}

.doboz {
  /* Gridboxok doboza */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: dodgerblue;
  padding: 10px;
}

.oszlop {
  /* Gridbox */
  background-color: #f1f1f1;
  border: 1px solid black;
  padding: 10px;
}

section {
  float: left;
  width: 95%;
  padding-left: 1em;
  background-color: Silver;
}

article {
}

h1 {
  text-align: center;
  color: DarkBlue;
}

table {
  border-width: 0px 0px 0px 0px;
  width: 100%; /* szélesség */
}

td {
  border-width: 0px 0px 0px 0px;
  text-align: left;
  vertical-align: center;
  padding-top: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
  padding-left: 1px;
}

tr {
  border-width: 1px 1px 1px 1px;
}

ul {
  list-style-type: none;
  margin: 2px;
  padding: 1px;
}

li {
  list-style-type: none;
  margin: 1px;
  padding: 0;
}

footer {
  position: relative;
  margin-top: -1px;
  clear: both;
  right: 0;
  left: 0;
  width: 100%;
  height: 28px;
  padding: 1.5rem;
  z-index: 1;
  font-size: x-small;
  text-align: center;
  vertical-align: middle;
  background-color: linen;
}

footer div.footerContent {
  position: absolute;
  color: darkblue;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

figure {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  width: 90%;
  border: 10px #de7041 solid;
  padding: 4px;
  position: -webkit-sticky;
  margin: 2rem 0;
}

figure.img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
figcaption {
  background-color: BurlyWood;
  color: rgb(48, 47, 47);
  font-style: italic;
  padding: 2px;
  text-align: center;
}

.kep {
  height: 80vh;
  max-height: 40rem;
}

.kep-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.grid-container {
  display: grid;
  grid-template-columns: 10% 90% 5%;
}

div.egy {
}

div.ketto {
}

div.harom {
}

a:link {
  /* nem látogatod link */
  color: green;
}

a:visited {
  /* meglátogatod link */
  color: olive;
}

a:hover {
  /* egérmutató a link felett */
  color: #ff00ff;
}

a:active {
  /* kiválasztott link */
  color: #0000ff;
}
