html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
}

#santa-out {
    animation: fadeIn 0.5s ease-in;
}

#you-out {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media only screen and (prefers-color-scheme: dark) {
    .santa-bg {
        background: #2f364a;
    }
}

.santa {
    background: -webkit-linear-gradient(30deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.you {
    background: -webkit-linear-gradient(30deg, rgb(51, 40, 255) 0%, rgba(0,212,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#you-out-bp {
    display: none;
}

#santa-out-bp {
    display: none;
}

.you-out-con {
    animation: fadeIn 0.5s ease-in;
}

.santa-out-con {
    animation: fadeIn 0.5s ease-in;
}

#input-con {
    padding-top: 1rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

main.focused {
    margin-bottom: 25vh;
}

#conv {
    flex: 1;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#conv::-webkit-scrollbar {
    display: none;
}