body {
    background-color: black;
    background-image: url('assets/bg.png');
    font-family: 'Oswald', sans-serif;
    color: white;
    overflow: hidden;
    /* Hide scrollbars */
    position: relative;
    /* Required for absolute positioning of props */
    user-select: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.profile-card {
    text-align: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 40px;
    font-weight: bold;
    background-image: linear-gradient(to right, #82dd86, #6666ee, #43ccd4, #82dd86);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

.profile-description {
    font-size: 25px;
    user-select: none;
    text-shadow: 2px 2px 4px #000000;
}

.social-icons {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icons li a {
    color: white;
    text-decoration: none;
    font-size: 50px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px #000000;
}

.social-icons li a:hover {
    color: #43b4da;
}

#audio-player {
    display: none;
}

#play-pause-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #43b4da;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    /* Place the button above other content */
}

/* Falling prop animation */
.prop-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* Place the props behind other content */
}

.prop {
    position: absolute;
    top: -10px;
    width: 60px;
    height: 60px;
    background-size: cover;
    filter: blur(2px);
    animation: snowfallAnimation linear infinite;
}

@keyframes snowfallAnimation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}