body{
    background-image: url(https://chefmarket.hu/public/upload/product_image/8455/8455442/22903/6336-tojasserpa55336653.jpg);
    background-repeat: repeat;
    background-size: 4em;
    background-color: #000;
    margin: 0;
    padding: 0;
}
*{
    font-family: 'Comic Sans MS', cursive;
}
.container{
    display: flex;
    flex-direction: column;
    width: 800px;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    transition: 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.kispiros{
    position: absolute;
    bottom: 200px;
}
.s10{
    position: absolute;
    top: 120px;

}
.s10>img{
    width: 300px;
}
.kispiros>img{
    width: 300px;
}
.maintext{
    color: yellow;
    text-shadow: 2px 2px 4px #000000;
    font-size: 34px;
    margin: 20px 0;
    padding-top: 18px;
}
.kispiros2{
    position: fixed;
    bottom:50px;
    right:0px;
}
.toasok{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.toasok>img:hover{
    animation: pop 0.5s infinite;
    cursor: pointer;
}
.toasok>img{
    width: 150px;
    height: fit-content;
}
.toasbehindbars{
    width: 600px;
    height: 300px;
    border-radius: 25px;
}
.toasbehindbars:hover{
    animation: pop 0.5s infinite;
    cursor: pointer;
}
.clickbait{
    width: 200px;
    margin-bottom: 75px;
    animation: bounce 0.5s infinite;

}
.click{
    display: flex;
    flex-direction: row;
}
.ulul{
    display: flex;
    flex-direction: row;
    font-size: 32px;
    justify-content: space-evenly;
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-inline-start: 0;
}
.ulul > li{
    margin: 5px;
    border: 2px solid salmon;
    background: linear-gradient(90deg, gold, orange, yellow, gold);
    border-radius: 16px;
    width: 300px;
    transition: 0.5s linear;
}
.ulul > li:hover{
    scale: 0.7;
    background-color: palevioletred;
    animation: pop 0.25s infinite;
    cursor: pointer;
}
#toasimg{
    position: fixed;
    float:left;
    top:200px;
}
.boing{
    animation: pop 0.3s infinite;
    cursor: pointer;
}
.shake{
    animation: shake 0.1s infinite;
    cursor: pointer;
}
#toas{
    width: 500px;
    height: 500px;
    animation: tilt-shaking 0.15s infinite;
}

.album{
    font-size: 32px;
    font-weight: bolder;
    text-decoration: none;
    color: black;
    animation: flash .1s infinite;
}
.album:hover{
    color: red;
    animation: pop 0.3s infinite;
    cursor: pointer;
}
@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
@keyframes flash {
    0% { filter: hue-rotate(0deg);  }
    25% { filter: hue-rotate(90deg);  }
    50% { filter: hue-rotate(180deg);   }
    75% { filter: hue-rotate(270deg);  }
    100% { filter: hue-rotate(360deg);  }
}
@keyframes bounce {
    25%  { transform: translateY(-30px); }
    75%  { transform: translateY(30px); }
}

@keyframes pop {
    0%{
        scale: 1;
    }
    50%{
        scale: 0.7;
    }
    100%{
        scale: 1;
    }
}
@keyframes shake {
    0%{
        rotate: 35deg;
    }
    50%{
        rotate: 0deg;
    }
    100%{
        rotate: -35deg;
    }
}
@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 25%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.rainbow-text {
    background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
    animation: rainbow 0.7s ease infinite, pop 0.3s ease infinite;
    background-size: 800% 800%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.clicker-btn {
    background: linear-gradient(90deg, gold, orange, yellow, gold);
    color: #000;
    font-size: 22px;
    font-weight: bold;
    border: 3px solid #ff9800;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    padding: 12px 32px;
    margin: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.3s;
    outline: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.clicker-btn:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
    background: linear-gradient(90deg, orange, gold, yellow, orange);
}
.clicker-btn:active {
    transform: scale(0.97) rotate(1deg);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}
.clicker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.clicker-score {
    font-size: 48px;
    color: yellow;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 32px;
}
.clicker-img {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: transform 0.1s;
}
.clicker-img:active {
    transform: scale(0.95);
}
.announcement{
    background-color: rgba(0, 0, 0, 0.575);
    color: rgb(255, 255, 0);
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    border: 4px solid red;
    border-radius: 12px;
    width: 100%;
    text-shadow: 2px 2px 4px #000000;
}
.subcont{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.subsub{
    display: flex;
    margin-top: 30px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}