 body {
            margin: 0;
            font-family: 'Times New Roman', Times, serif;
            font-size: larger;
            background-color: #f2f7f5;
            color: #333;
        }

        header {
            background-color: #2f6f6d;
            color: white;
            padding: 20px;
            text-align: center;
            height: 90px;

        }

        nav {
            background-color: #1f4f4d;
            padding: 10px;
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }

        nav a:hover {
            text-decoration: underline;
        }

        main {
            padding: 30px;
            flex: 1;
        }

        section {
            margin-bottom: 40px;
        }
        
        .foszoveg {
            text-align: center;
            padding-bottom: 25px;
            width: 800px;
            margin: auto;
        }

        h2 {
            color: #2f6f6d;
        }

        footer {
            background-color: #1f4f4d;
            color: white;
            text-align: center;
            padding: 10px;
            
        }

        .kepek {
            width: 400px;
            padding: 10px;
            border-radius: 12px;
            background: #f5f5f5;
            text-align: center;
        }
        .sideimageright {
            float: right;
            width: 150px;
            flex-direction: column;
            display: flex;
            min-height: 100px;
            padding-right: 15px;
        }
        .sideimageleft {
            float: left;
            width: 150px;
            flex-direction: column;
            display: flex;
            min-height: 100px;
            padding-left: 15px;
        }
        #terkep {
            float: right;
            width: 600px;
            height: 600px;
            margin: auto;
            flex-direction: column;
            display: flex;
        }

        .fullpage {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        #logo {
            padding: 15px 15px 20px 15px;
            width: 400px;
            margin: auto;
            display: block;
        }




.gallery-img {
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
}

.lightbox:target {
    display: flex;
}

.close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    color: white;
    text-decoration: none;
}   