/* General styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #e0f2f1; /* Finnország zöld színe */
    position: relative;
    min-height: 100vh;
}

.hero {
    background-color: rgba(128, 128, 128, 0.8);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
	background-image: url("media/hero.jpg");
	background-repeat: no-repeat;
	
	background-position: center;
}

.hero div {
    background-color: rgba(128, 128, 128, 0.8);
    color: #fff;
    text-align: center;
}

.hero p {
    text-align: center;
}

.transportation, .culture, .events {
    padding: 80px 0;
}

.gallery {
    padding: 80px 0;
}

.gallery .carousel-inner img {
    border-radius: 10px;
}

.cards {
    padding: 80px 0;
}

.cards .card {
    transition: transform 0.3s ease-in-out;
}

.cards .card:hover {
    transform: scale(1.05);
}

.footer p, .footer a {
    margin-bottom: 0;
    text-decoration: none;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    display: inline;
    margin: 0 10px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

/* Additional styles */
p {
    font-family: 'Georgia', serif; /* Külön betűstílus a bekezdésekhez */
    margin-bottom: 20px;
}

ul {
    margin-bottom: 20px;
}

.list-unstyled {
    padding-left: 20px;
}

/* Media queries */
@media (max-width: 768px) {
    .hero {
        height: 40vh;
    }
}

table {
	border-collapse: collapse;
}
