* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffb3b3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.penguin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.penguin {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img{
    width: 100px;
}

.mini{
    width: 40px;
}

#no {
    transition: all 1s ease; /* เพิ่มการเคลื่อนไหวเพื่อทำให้ดูนุ่มนวล */
}


.fire {
    width: 20px;
    height: 20px;
    background-color: #ff7f3f;
    border-radius: 50%;
    position: relative;
    margin: 10px 0;
}

.fire:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #ff5300;
    border-radius: 50%;
}

/* From Uiverse.io by cssbuttons-io */ 
.btn {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 700;
    color: black;
    background-color: white;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
  }
  
  .btn::after {
    background-color: #fff;
  }
  
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
  }
  