body {
	background: black url(assets/bg_min.png) no-repeat;
    background-size: cover;
    font-family: 'Oswald', sans-serif;
    color: white;
    position: relative;
    margin: 0;
    user-select: none;
	background-repeat: round;
}

.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;
}

.rainbow {
    text-align: center;
    text-decoration: underline;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 5px;
}

.rainbow_text_animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: monospace;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

.rainbow_text_animated2 {
    background: linear-gradient(to right, #ff3399, #82dd86, #6666ee, #43ccd4, #82dd86, #ff3399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

.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;
}

.prop-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.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);
    }
}

.information-container {
    margin-top: 50px;
    display: flex;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.information {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin-bottom: 10px;
    text-align: left;
    width: 40rem;
}

.information-header {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.information-content {
    font-size: 16px;
}

.information-content-vids {
    font-size: 16px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
}

#audio-player {
    display: none;
}

a:visited {
    text-decoration: none;
    color: white;
}

.page-heading {
    text-align: center;
}

.page-heading h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px #080808;
}

.home-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #43b4da;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #3498b9;
}
