/* ===== RESET CSS ===== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126 | Public Domain
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ===== SAJÁT STÍLUSOK ===== */
@charset "utf-8";

/* Háttér és alap beállítás */
html {
  background-image: url(../tartalom/img/parlament_ejjel.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  font-size: 18px;
}

@media (min-width: 480px) {
  html {
    font-size: calc(1em + 0.5vw);
  }
}

/* Alap betűcsalád és színek */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  max-width: 90vw;
  margin: 0 auto;
  color: white;
}

/* Konténer */
#container {
  margin: 2rem auto;
  padding: 1rem;
}

/* Címsor */
h1 {
  font-size: 3rem;
  text-align: center;
  margin: 2rem 0;
  text-shadow: 5px 5px 5px black;
}

/* Audio szekció */
.audio-section {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.audio-section audio {
  width: 100%;
  max-width: 600px;
}

/* Lejátszás felirat stílusa */
.hang-szoveg {
  color: red;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 3px 3px 3px black;
  margin-bottom: 1rem;
}

.hang-szoveg:hover {
  color: brown;
  text-shadow: 0 0 20px rgb(255, 224, 27);
  text-decoration: underline;
}

/* Navigációs linkek */
#linkek {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
  text-align: center;
}

#linkek2 {
  display: flex;
  justify-content: center;  /* középre vízszintesen */
  margin-top: 2rem;         /* nagyobb távolság fentről */
  text-align: center;
  display: flex;
  justify-content: space-between;
}

#linkek2 h2 {
  font-size: 1rem;
  font-style: italic;
  color: white;
  text-shadow: 3px 3px 3px black;
  transition: all 0.3s ease;
  padding: 0;
}

#linkek2 a {
  text-decoration: none;
}

#linkek2 a:hover h2 {
  color: red;
  text-shadow: 0 0 10px #00ffff;
  transform: translateY(-5px);
  text-decoration: none;
}


#linkek h2 {
  font-size: 2rem;
  color: white;
  text-shadow: 3px 3px 3px black;
  transition: all 0.3s ease;
}



#linkek a {
  text-decoration: none;
}

#linkek a:hover h2 {
  color: red;
  text-shadow: 0 0 10px #00ffff;
  transform: translateY(-5px);
  text-decoration: none;
}
