@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;400&family=Roboto:wght@100;300;400;500;700&display=swap');

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

h2 {text-align: center;}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    gap: 10px;
    background: url(images/map-light.png);
}

.card2 {
    background: rgba(60, 59, 59, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.369);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px;
    width: 45%;
}



/* / Profile \ */

.user-profile {
    display: flex;
    gap: 1em;
}
.Profile-pic {
    position: relative;
}
#pfp {
    width: 128px;
    height: 128px;
    border-radius: 10%;
}
#activity-dot {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    transform: translate(50%, -50%);
    border: 2px solid rgba(60, 59, 59, 0.3);
}

#username {
    font-size: 28px;
    font-weight: bold;
}
#status2,
#status {
    opacity: 0.5;
    transition: all 0.6s ease;
}

/* \ Profile / */

/* / Spotify \ */

.spotify-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
}

.spotify-info {
    width: 100%;
}

#album-cover {
    width: 128px;
    height: 128px;
    border-radius: 10%;
}

#spotify-song {
    font-size: 24px;
    font-weight: bold;
}

#spotify-artist {
    opacity: 0.5;
}

.spotify-outerbar {
    margin-top: 5px;
    width: 100%;
    height: 6px;
    border-radius: 150px;
    background-color: rgb(74, 74, 74);
}

#spotify-innerbar {
    height: 6px;
    border-radius: 150px;
    background-color: #fff;
}

.spotify-time {
    margin-top: 2px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* \ Spotify / */

.heading {
    font-size: 45px;
    font-weight: bold;
}

@media (max-width: 820px) {
    .card2 {
        width: 98%;
    }
    .heading {
        font-size: 30px;
    }

}
ul,
li {
    padding: 0%;
    margin: 0;
    list-style: none;
}
.connections {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 5px;

}
.connection-icon {
    height: 28px;
}