body {
    margin: 0;
    padding: 0;
    background-color: #E7E7E7; 
    font-family: Arial, sans-serif;
    color: #333;
}

h1{
    font-size: 250%;
    font-weight: bold;
    color: #142501;
    margin: 10px;
}

h2{
    font-size: 200%;
    font-weight: bold;
    color: #264601;
    margin: 10px;
}

h3{
    font-size: 175%;
    font-weight: bold;
    color: #235000;
    margin: 10px;
}

p {
    font-size: 150%;
    line-height: 1.6;
    margin: 10px; 
    text-align: left;
}

li{
    font-size: 150%;
    text-align: left;    
    margin: 10px;
    color: #003f0b;
}

a:link{
    color: #0B5200;
    text-decoration: underline; 
}

a:visited {
    color: #2E502BFC; 
    text-decoration: underline; 
}

a:hover {
    color: #0f4c00; 
    text-decoration: underline; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #E7E7E7;
}

header img {
    flex: 1;
    width: 20%;
    height: auto;
}

header h1.cím {
    flex: 2;
    text-align: center;
    font-size: 300%;
    font-weight: bold;
    margin: 0;
    color: #283618;
}

header blockquote.idézet {
    flex: 1;
    text-align: right;
    font-style: italic;
    margin: 0;
}

nav{
    font-size: 150%; 
    border-top: #142501 1px solid;
    background-color: #c6d5c1;

}
nav.links {
    display: flex;
    justify-content: flex-end; 
    gap: 10px; 
}

nav.links a {
    text-decoration: none;
    color: #333;
    padding: 0 10px; 
    border-left: 2px solid #142501; 
   
}

figcaption {
    margin-top: 10px; 
    font-size: 100%; 
    color: #555; 
    text-align: center; 
    font-family: sans-serif; 
}

.kapcsolok {
    display: flex;
    flex-direction: row;
    justify-content: flex-end; 
    gap: 10px; 
    margin: 10px
}

.kapcsolok button {
    padding: 10px 15px;
    font-size: 90%;
    background-color: #047a00; 
    color: #fff; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.kapcsolok button:hover {
    background-color: #003803; 
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px; 
    border-top: 3px solid #6d6c6c; 
    text-align: center;
}

.skip-link {
    position: absolute;
    top: -40px; 
    left: 0;
    background: #000; 
    color: #fff; 
    padding: 10px;
    z-index: 100; 
    text-decoration: none;
    font-size: 1rem;
}

.skip-link:focus {
    top: 0; 
    left: 0;
    outline: 2px solid #fff; 
}

/*tablet*/
@media (max-width: 1180px) {
    header h1.cím{
        font-size: 200%; 
    }

    header img {
        width: 20%; 
    }

    header blockquote.idézet {
        text-align: center; 
        margin-top: 10px;
        text-align: center;
        width: 100%;
        
    }
    nav.links {
        flex-wrap: wrap;
        gap: 10px;
        border: none;
    }
    .kapcsolok button {
        padding: 8px 12px; 
        font-size: 80%; 
    }
    footer{
        font-size: 80%; 
    }
}

/*Telefon*/
@media (max-width: 852px) {
    header {
        flex-direction: column; 
        text-align: center;
    }
    header img {
        width: 60%; 
    }
     header h1.cím {
        font-size: 150%; 
    }

    header blockquote.idézet {
        margin-top: 20px;
        font-size: 1rem; 
        text-align: center;
        width: 100%;
    }

    nav.links {
        flex-direction: column; 
        gap: 10px;
        font-size: 100%;
    }
    
    .kapcsolok button {
        padding: 6px 10px; 
        font-size: 70%; 
    }
    footer{
        font-size: 70%; 
    }
}
