body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #111; /* Dark background to match the cowboy's black outfit */
    overflow: hidden; /* Prevent scrollbars */
}

.container {
    text-align: center;
    background: #be001b; /* Red background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    max-width: 400px;
    width: 100%;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff; /* White text for visibility against the red background */
}

.links a {
    display: block;
    background-color: #000; /* Black background for the links */
    color: #fff; /* White text for the links */
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #333; /* Slightly lighter black on hover */
}

#snowButton {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

#snowButton:hover {
    background-color: #333;
}

#snowContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks through the snow */
    z-index: -1; /* Keep it behind other content */
}

.snowflake {
    position: fixed;
    top: -10px;
    color: #fff; /* White snowflakes */
    user-select: none; /* Prevent text selection */
    pointer-events: none; /* Allow clicks through snowflakes */
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}
