@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

body {
    color: #FFFFFF;
    background-color: #000000;
}

h1 {
    font-size: 2rem;
    filter: drop-shadow(0rem 0rem 0.5rem #6c6c6c)
}

.snowflake {
    position: fixed;
    top: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    color: #ffffff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow-y: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-family: "Kalam", cursive;
    font-weight: 600;
    font-style: normal;
}

.girl-hanging {
    max-width: 150px;
    animation: hanging 6s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transform-origin: top center;
    filter: drop-shadow(0 0 0.1rem #CCC) saturate(0.3);
}

@keyframes hanging {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(8deg);
    }
    50% {
        transform: rotate(-8deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes subtle-horizontal-sway {
    0% {
        transform: translateX(-8px);
    }
    100% {
        transform: translateX(8px);
    }
}

.container span {
    color: rgb(255, 0, 0);
    position: relative;
}

.container span::after {
    content: '|';
    position: absolute;
    right: -3px;
    animation: blinking 0.8s ease infinite;
    font-weight: 100;
}

@keyframes blinking {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
        color: rgba(255, 255, 255, 0.8);
    }
}

.links-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.links-container a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid #FFFFFF;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.links-container a:hover {
    background-color: #FFFFFF;
    color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}