.container {
	max-width: 1020px;
	margin: 0 auto;
	padding: 20px;
	background-color: #dcdcdc;
}

body {
    font-family: "Lilita", sans-serif;
    font-weight: 700;
    font-style: normal;
	background-color: #0042aa;
}

.cimer {
    max-width: 400px;
    width: 100%;
    height: auto;
	display: block;
    margin: 0 auto;
}

h1 {
	text-align: left;
	font-size: 40px;
    color: #1C1C1C;
}

/* Menü */

ul.mainmenu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: #1d8fe5;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
}

li.mainitem {
    display: inline-block;
}

li.mainitem > a {
    text-decoration: none;
    text-align: center;
    padding: 20px;
    display: block;
    color: white;
    font-size: 20px;
	transition: background-color 0.4s, color 0.4s;
}

li.mainitem:hover > a {
    background-color: #0042aa;
	color: #1d8fe5;
}

.dropdown-content {
    display: none;
    position: absolute;
    border-radius: 5px;
    background-color: #1d8fe5;
    min-width: 160px;
    box-shadow: 8px 6px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    font-size: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
	transition: background-color 0.4s, color 0.4s;
}

.dropdown-content a:hover {
    background-color: #0042aa;
    color: #1d8fe5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a{
	text-align: center;
	color: white;
}

@media (max-width: 768px) {
    ul.mainmenu {
        flex-direction: column;
        align-items: center;
    }

    li.mainitem > a {
        font-size: 18px;
        padding: 15px;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
        box-shadow: none;
    }

    .dropdown-content a {
        font-size: 18px;
        padding: 10px;
    }
}

/* Hírek */

.news-section {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.news-image {
    max-width: 40%;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
}

.news-text h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0042aa; 
}

.news-text p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Sport */

.sport-section {
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.sport-image {
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid #1d8fe5;
}

.sport-description p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.h1sport {
    font-size: 50px;
    color: #1C1C1C;
    margin-bottom: 20px;
    text-align: center;
}

/* Contact */

.contact-section {
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.h1contact {
    font-size: 50px;
    text-align: center;
    color: #1C1C1C;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Footer */

.footer {
    background-color: #1d8fe5;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-radius: 12px;
}

.footer p {
    margin: 5px 0;
}
