@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body{
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar{
    display:none;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    min-height: 100vh;

    scrollbar-width: none;
    /* overflow: hidden; */

    font-family: 'Poppins'
}

body::before{
    content: "";
    position: fixed;
    inset: 0;

    background-image: url(kepek/iliaszbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    filter: blur(5px);
    transform: scale(1.1);
    z-index: -1;
}

.container{
    padding: 0px 15px;

    background: rgba(0, 0, 0, 0.5);

    border-radius: 15px;
    border: 6px double black;

    color: rgba(255, 255, 255, 0.5);

    z-index: 11;

    text-align: center;
}

.container p{
    font-size: 18px;
    margin-bottom: 30px;
    /* text-align: justify; */
}

.container h1{
    /* font-size: 48px; */
    user-select: none;
    display: flex;
    justify-content: center;
}

.container h1 p{
    font-size: 48px;
    margin: 0
}

.yap{
    justify-content: center;
}

.felso{
    height: 90%;
    width: 55%;
}

.gombok{
    margin-bottom: 25px
}

.gomb{
    margin-top: 150px;
    font-size: 28px;
    margin: 0px 10px
}

a:hover{
    color: rgba(255, 255, 255, .8)
}

.betu{
    transition: color .3s ease, text-shadow .6s ease;
}

h1:hover .betu {
    /* color: white; */
    text-shadow:
        0 0 6px white,
        0 0 10px white;
}

.kartya-grid{
    display: grid;
    grid-template-columns: repeat(3, .5fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 15px;
}

.kartya{
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 3px solid #bf932385;
    margin: 0;
    /* padding: 0px 15px 0px 15px; */
}

.kep{
    margin: 0 auto;
    height: 25%;
    width: 80%;
}

.kep span{
    /* border: solid; */
    font-size: 14px;
}

.kep i{
    margin: 0;
}

img{
    width: 80%;
}

.txt{
    margin: 0 auto;
    text-align: justify;
    font-size: 32px;
    width: 70%;
}

li{
    list-style-type: none;
    padding-left: 20px
}

.megjegyzes{
    border-left: 5px solid #d4af37;
    padding: 15px;
    margin: 20px 0;
}

.szerzo{
    color: white;
    position: absolute;
    top: 90%;
    left: 80%;
    animation: forog 5s infinite linear;
}

@keyframes forog{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}