/* general */
#logo {
    font-family: 'Galada', cursive;
    color: rgb(253, 50, 77);
}
body {
    font-family: 'Rubik', sans-serif;
}

/* left bar */
#left-bar {
    /* 73 */
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}
nav img, #noti img, #account img {
    height: 22px;
    width: 22px;
}

/* top-bar */
#top-bar {
    /* 73 */
    /* box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; */
    background-color: rgb(255, 97, 118);
}
#bottom-bar {
    background-color: rgb(255, 97, 118);
    color: rgb(252, 242, 244);

}
/* page body */
#page-body {
    background-color: white;
}
.banner-display {
    height: 350px;
    width: 100%;
}
.banner-display img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}
.category-title {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
}
.category-carousel {
    padding: 1rem 0;
    overflow: hidden;
}
.category-content, .category-content-artist { 
    display: inline-block;
    min-height: 220px;
    height: 220px;
    min-width: 155px;
    width: 155px;

    /* border: 1px solid black; */
    border-radius: 6%;
    background-color: rgb(255, 255, 255);
    padding: 16px;
    /* 34 */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.category-content:hover, .category-content-artist:hover {
    /* 19 */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    cursor: pointer;
}
.category-content img, #thumbnail-container img {
    border-radius: 6%;
    margin-bottom: 16px;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1/1;
}
.category-content-name {
    font-weight: 600;
    line-height: 1.5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.category-content-description {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.category-content-description:hover {
    text-decoration: underline;
}
.category-content-artist {
    display: inline-block;
    height: fit-content;
    width: 155px ;
    min-width: 155px ;
    /* border: 1px solid black; */
    border-radius: 6%;

    background-color: rgb(255, 255, 255);
    padding: 16px;
}

.category-content-artist img {
    /* border: 1px solid black; */
    border-radius: 50%;
    margin-bottom: 16px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.category-content-artist-name {
    width: 100%;
    text-align: center;
}
/* footer */
footer img {
    height: 2.5rem;
    width: 2.5rem;
}
.footer-menu a:hover{
    text-decoration: underline;
    font-weight: 600;
}

/* Test hihi */
#asArtist {
    background-color: #ffd3da;
}