*{
	color: rgba(255, 200, 100, 0.5);
	text-shadow: 10px 10px 50px rgb(0,0,0);
}

body {
	background: linear-gradient(135deg, #232526 0%, #414345 100%);
	color: #f5e9d0;
	font-family: 'Staatliches', cursive;
	text-align: center;
	min-height: 100vh;
}

h1, h2 {
	color: #111; /* fekete szín */
	text-shadow: 2px 2px 10px #ffc864; /* sárga árnyék, hogy kiemelkedjen */
	letter-spacing: 2px;
	font-size: 3rem; /* nagyobb betűméret */
}

a, h2 a {
	color: #ffb347;
	text-decoration: none;
	transition: color 0.2s;
}
a:hover, h2 a:hover {
	color: #fffbe7;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 32px 0;
}

.container img, .container video {
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.4);
	transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
	margin-bottom: 10px;
	max-width: 90vw;
}

.container img:hover, .container video:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 32px rgba(255,200,100,0.2);
}

footer {
	text-align: center;
	color: #aaa;
	padding: 16px 0 0 0;
	font-size: 14px;
	letter-spacing: 1px;
}

.btn, button {
	background: #ffc864;
	color: #232526;
	border: none;
	border-radius: 8px;
	padding: 8px 24px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.btn:hover, button:hover {
	background: #232526;
	color: #ffc864;
}

li {
	list-style: none;
	display: block;
	border: 2px solid rgba(220, 222, 222,0.2);
	border-radius: 8px;
	padding: 8px;
	margin: 8px auto;
	max-width: 400px;
	background: rgba(255,255,255,0.03);
	text-align: center;
	git config --global user.name "A TE NEVED"
	git config --global user.email "A TE EMAIL CÍMED"	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

ul, .play {
	clear: both;
}

h2 a {
	padding:10px;
	color: rgba(255, 200, 100, 0.7);
	cursor: pointer;
}

::-webkit-scrollbar {
	width: 8px;
	background: #232526;
}
::-webkit-scrollbar-thumb {
	background: #ffc864;
	border-radius: 4px;
}

.fullscreen-video {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    display: block;
}

.jumbotron {
    background: rgba(255,255,255,0.85);
    color: #111;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
}

/* Növeld a két kép közötti távolságot a főoldalon */
.row.justify-content-center > .col-sm-3 {
    margin-left: 32px;
    margin-right: 32px;
}