#profile {
    height: auto;
    overflow-y: visible;
    margin-bottom: 10vh;
}

#profile #player-stack {
    justify-content: space-around !important;
    align-items: flex-start;
    width: 100%;
    /*gap: 0;*/
    padding: 2rem;
    box-sizing: border-box;
    margin-top: 1rem;
}

#profile-desc {
    margin: 1rem;
}

#player {
    display: flex;
    flex-direction: row;
    width: fit-content;
    padding: 1rem;
}

#song-info {
    display: flex;
    flex-direction: column;
    width: 25vw;
    align-items: flex-start;
}

#song-info p {
    font-size: 0.75rem;
    margin: 0;
    padding: 0;
}

#song-title {
    font-size: small;
}

#song {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-secondary);
}

#artist {
    font-size: small;
    color: var(--color-highlight);
}

#album {
    font-size: small;
}

#album-art {
    align-self: center;
}

.extra-padding {
    margin-bottom: 10rem;
}

#tech-stack {
    padding-top: 0;
    align-items: center;
    /*margin: 1rem;*/
}


@media (max-width: 768px) {
    #profile {
        height: 100vh;
        overflow-y: auto;
        padding: 1rem;
        box-sizing: border-box;
        margin-bottom: 2rem;
    }

    #profile .horizontal-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    #profile-desc {
        width: 100%;
        margin: 1rem 0;
        box-sizing: border-box;
    }

    #player {
        width: 100%;
        margin: 1rem 0;
        box-sizing: border-box;
    }

    #song-info {
        width: 60%;
        padding-right: 1rem;
    }

    #album-art {
        width: 40%;
    }

    #album-art img {
        max-width: 100%;
        height: auto;
    }

    #tech-stack {
        margin: 1rem 0;
        padding: 1rem;
        box-sizing: border-box;
    }

    #tech-stack img {
        max-width: 100%;
        height: auto;
    }

    .heading {
        font-size: 2rem;
        text-align: center;
        margin: 1rem 0;
    }

    #profile #player-stack {
        align-items: center;
    }
}

@media (max-width: 480px) {
    #player {
        padding: 1rem;
    }

    #song-info {
        width: 70%;
    }

    #album-art {
        width: 30%;
    }
}