* {
    font-family: "Kanit", sans-serif !important;
}

body {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #121e2c !important;
    /* bg-slate-900 */
    color: #f1f5f9;
    /* text-slate-100 */
}

#app {
    width: 100%;
    max-width: 470px;
    height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #1e293b;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    background-color: #334155;
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: #f8fafc;
}

#app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 10px;
    background-color: #1e293b;
    /* bg-slate-800 */
    color: #e2e8f0;
    /* text-slate-200 */
}

#app-content img {
    cursor: pointer;
}

#app-footer {
    position: relative;
    width: 100%;
    background-color: #334155;
    /* bg-slate-700 */
    color: #fff !important;
    /* text-slate-50 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



.col-4 {
    position: relative;
}

.col-4::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 30px;
    height: 30px;
    background-image: url('https://images.vexels.com/media/users/3/133841/isolated/preview/507efd8b913b70d5d488a8859e6d781f-icone-plano-12-de-chapeu-vermelho-de-papai-noel.png');
    background-size: cover;
    background-position: center;
    animation: swingAnimation 1.5s ease-in-out infinite;
}

@keyframes swingAnimation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}





