* {
    margin:0;
    padding:0;
}

:root{
    --foreground: ;
--background: ;
--secondary: ;
--highlight: red;
}

::-webkit-scrollbar {
    display: none;
}

/* For Firefox */
html {
    scrollbar-width: none;
}

/* For Internet Explorer and Edge */
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    -ms-overflow-style: none;
  }
  
  /* Entire Container */
  .entire {
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    height:100%;
    overflow: hidden;
  }

.top-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 27%;
    width: 100%; /* Make it full width to prevent squishing */
    gap: 25px;
    color:black;

}
.cont {
    border-radius:10px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 200px; /* Carousel width */
    height: 200px; /* Ensure height is set */
    white-space: nowrap; /* Prevent text wrapping */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.cont::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers */
}

.cont > div {
    flex: 0 0 100%; /* Ensure each image takes full width */
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.cont img {
    border-radius:10px;
    width: 100%; /* Image takes full width of container */
    height: 100%; /* Image takes full height */
    object-fit: contain; /* Ensure the image fills the box */
}

  

.image {
    display: flex;
    align-items: center;
    width: 200px;
    border-radius: 15px;
    margin-top: 20px;
}

.image > img {
    width: 200px;
    border-radius: 15px;
}

.name {
    text-align: center;
  /*  color: black;*/
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 25px;
    font-weight: 600;
    border-bottom: 3px solid black;
    width: 370px;
}

.profilebox {
    height: 63%;
    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:5%;
}

.about-box {
    border-radius: 13px;
    margin-top: 20px;
    width: 90%;
    max-width: 350px;
    min-height: 170px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    font-size: 15px;
    background-color: white;
    font-family: "Kantumruy Pro", sans-serif;
    font-weight: 300;
    gap:10px
}

.about-box > p {
    margin-left: 10px;
    padding:10px;
}

.pic > img {
    width: 30%;
}

strong {
    font-weight: 500;
}

.upcoming {
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: white;
}

.container1 {
    border-radius: 10px;
    background-color: gray;
    display: flex;
    flex-direction: column;
    width: 250px;
}

.container2 {
    display: flex;
    border-radius: 10px;
}
.container1 > a {
    text-decoration:none;
    text-align: center;
    color:black;
}
.item1 {
    width: 62.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    font-family: "Kantumruy Pro", sans-serif;
}

.item2 {
    width: 125px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.item2 > img {
    width: 100px;
}

.container3 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    width: 250px;
    text-align: center;
    height: 50px;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Ensure the artist section aligns correctly */
.artist {
    background-color: white;
    color: black;
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    width: 250px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height:10%;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Tabs */
  .tab {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
    background-color: black;
  }
  
  /* Tab Hover Effect */
  .tab:hover {
    background-color: #00CECB;
    transition: .4s;
  }
  
  /* Logo Box */
  .logobox {
    width: 50px;
    height: 50%;
    display: block;
  }