/*Alap beállítások*/
body{
    font-family: "Comic Sans MS", Arial, sans-serif;
    background-color: #f3f8ff;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Fejléc */
header{
    background-color: #b30000;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header h1{
    margin-bottom: 10px;
}

header p{
    font-style: italic;
}
/*Navigáció*/
nav {
    background-color: #006600;
    padding: 10px;
}

nav a{
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover{
    color: #ffee08;
    text-decoration: underline;
}

/*Fő tartalom*/
main{
    padding: 20px;
}

h2{
    color: #b30000;
}

.karacsonyfa{
    border: 5px solid #008000;
    border-radius: 20px;
    box-shadow: 0 0 10px #004d00;
    margin-top: 15px;
}
/*Gomb*/
button{
    background-color: #006600;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer
}

button:hover{
    background-color: #009900;
}

/*Díszkereső*/
.jatekter{
    text-align: center;
    padding: 30px;
}

#jatekter img{
    margin-top: 20px;
    width: 120px;
    transition: transform 0.3s;
}

#jatekter img:hover{
    transform: scale(1.2);
}

#uzenet{
    font-weight: bold;
    color: #b30000;
    margin-top: 15px;
    font-size: 18px;
}

/*Lábléc*/
footer{
    background-color: #eee;
    padding: 10px;
    margin-top: 30px;
}
/*Ajándékkeresőhöz: */
#dobozok{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.ajandekdoboz{
    width: 120px;
    cursor: pointer;
    transition: transform 0.2s;
}

.ajandekdoboz:hover{
    transform: scale(1.1);
}

#uzenet{
    font-size: 20px;
    font-weight: bold;
    color: #b30000;
    margin-bottom: 20px;
}

#ujraBTN{
    background-color: #006600;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    display: none;
}

#ujraBTN:hover{
    background-color: #009900;
}
