* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: monospace;
    text-align: center;
    overflow: hidden;
    color: white;
}

.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 2.2fr 7.3fr 1.5fr;
    background: url("./assets/backgroud.jpg");
    background-size: 100vw 100vh;
}

.left-section {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0.1rem 0.1rem rgba(128, 128, 128, 1);
}

.right-section {
    min-height: 100vh;
    background: transparent;
    overflow: scroll;
    overflow-x: hidden
/*     -webkit-overflow-scrolling: touch;
    scrollbar-width: thick;
    scrollbar-color: turquoise transparent; */
}

.friends-section {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: -0.1rem 0.1rem rgba(128, 128, 128, 1);
}

.left-header {
    height: 40vh;
}

.logo-container {
    width: 30rem;
    position: relative;
    top: -8rem;
    left: -4rem;
}

.logo-container img {
    height: 30rem;
}

.left-content-wrapper {
    /* background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5rem; */
    margin: 0 1rem;
    /* box-shadow: -0.1rem 0.1rem rgba(128, 128, 128, 0.3); */
}

.left-content {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    overflow: visible;
}

.left-icons {
    overflow: visible;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.left-icon-details {
    overflow: visible;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: transform 1s ease;
    margin-bottom: 2rem;
}

.left-icon-details a {
    margin-left: 2rem;
    text-decoration: none;
    font-weight: bolder;
    font-size: 1rem;

}

.left-icon-details a::first-letter {
    color: red;
    font-size: 1.5rem;
}

.left-icon-details img {
    margin-left: 2.5rem;
    width: 1.3rem;
}

.left-icon-details:hover {
    transform: scale(1.4);
}

.right-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2%;
    margin-left: 55%;
}


.search-container #search {
    padding: 1rem;
    border-radius: 5rem;
    border: 0.23rem solid turquoise;
    width: 6rem;
    height: 2.7rem;
    font-weight: bold;
    background: transparent;
    color: white;
    font-size: 1rem;
    transition: width 1s ease;
}

.search-container #search:hover {
    width: 17rem;
    background: white;
    color: black;
}

.about-us-container {
    height: 2rem;
    display: flex;
    align-items: center;
}

.about-us {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.7rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-us::first-letter {
    color: red;
    font-size: 1.6rem;
}

.about-us-container:hover {
    background-color: white;
    border-radius: 5rem;
}

.about-us:hover {
    color: black;
}

.login-button {
    width: 6rem;
    height: 2.5rem;
    background: transparent;
    color: white;
    border-radius: 1rem;
    font-weight: bold;
    border: 0.2rem solid turquoise;
}

.login-button:hover {
    background-color: white;
    color: black;
}

.main-container {
    margin-top: 5rem;
    margin-left: 3rem;
}

.song-group-title {
    text-align: left;
    font-size: 1.5rem;
    font-weight: bolder;
}

.song-group-title::first-letter {
    color: red;
    font-size: 2rem;
}

.song-group {
    display: flex;
    overflow: auto;
    margin-right: 2rem;
    margin-bottom: 2rem;
    width: 60vw;
    height: 30rem;
/*     -webkit-overflow-scrolling: touch;
    scrollbar-color: turquoise transparent; */
}

.song-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
}

.artists {
    margin-left: 2rem;
    width: 17rem;
    height: 25rem;
    border-radius: 2em;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.artists-banner {
    border-radius: 7rem;
}

.artists-banner img {
    width: 15rem;
    height: 15rem;
    border-radius: 7rem;
    opacity: 0.7;
    transition: transform 1s ease;
    border: 0.1rem solid gray;
}

.artists-banner img:hover {
    transform: scale(1.3);
    opacity: 1;
    cursor: pointer;
}

.artists h3 a {
    color: white;
}

.artists h3 a:hover {
    color: turquoise;
}

.song {
    margin-left: 2rem;
    width: 17rem;
    height: 25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2em;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0.1rem 0.1rem rgba(128, 128, 128, 0.3);
    transition: transform 1s ease;
}

.song:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    overflow: visible;
    cursor: pointer;
}

.song-banner {
    border-radius: 2rem;
}

.song-banner img {
    width: 13rem;
    height: 11rem;
    opacity: 0.7;
    border-radius: 2rem;
    transition: transform 1s ease;
}

.song-banner img:hover {
    opacity: 1;
    transform: scale(1.3);
}

.song-name {
    font-size: 1.1rem;
}

.artist-name {
    font-size: 0.8rem;
    color: gray;
}

.artist-name:hover {
    color: turquoise;
}

.audio-player {
    border-radius: 2rem;
    border: 0.1rem solid white;
    background: turquoise;
    opacity: 0.7;
    width: 6.5rem;
    transition: width 1s ease;
}

.audio-player:hover {
    opacity: 1;
    width: 11.5rem;
}

.friends-header {
    margin-top: 1rem;
    margin-right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.friends-header h1 {
    font-weight: bolder;
    font-size: 1.1rem;
}

.friends-header img {
    opacity: 0.5;
}

.friends-header img:hover {
    opacity: 1;
}

.friends-header h1::first-letter {
    color: red;
    font-size: 1.4rem;
}

.friends-wrapper {
    margin-left: 1rem;
    display: flex;
    overflow: auto;
    flex-direction: column;
    height: 90vh;
/*     -webkit-overflow-scrolling: touch;
    scrollbar-width: thick;
    scrollbar-color: turquoise transparent; */
}

.friends-group {
    display: flex;
    flex-direction: column;
    overflow: visible;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-around;
}

.friends {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.friends .profile-picture-wrapper {
    border-radius: 5rem;
    width: 4rem;
    overflow: hidden;
}

.friends .profile-picture {
    border-radius: 5rem;
    border: 0.1rem solid gray;
    width: 4rem;
    transition: transform 1s ease;
    opacity: 0.7;
}

.friends .profile-picture:hover {
    transform: scale(1.3);
    opacity: 1;
}

.friend-details {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    white-space: wrap;
}

.music-activity {
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.friend-details h1 {
    margin-bottom: 0.5rem;
}

.friend-details h1 a {
    text-decoration: none;
}

.friend-details h1 a:hover {
    color: turquoise;
}

.music-activity img {
    width: 1rem;
    height: 1rem;
}

.music-activity h6 a {
    text-decoration: none;
    color: gray;
    margin-left: 0.5rem;
}

.music-activity h6 a:hover {
    color: turquoise;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px turquoise;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: turquoise;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}
