@import url("./reset.css");
@import url("./components/sonerelease.css");
@import url("./components/footer.css");
@import url("./components/contact.css");
@import url("./components/music.css");
@import url("./components/about.css");
@import url("./components/header.css");
@import url("./components/hero.css");
@import url("./components/utils.css");

::selection {
    color: white;
    background-color: var(--clr-primary);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

html,
body {
    background-color: var(--clr-black);
}

::-webkit-scrollbar {
    width: 6px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background-color: rgb(165, 165, 165, 0.5);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(165, 165, 165);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    transform: translateX(10px);
    background-color: rgb(165, 165, 165);
}

/* Style for the side nav */
.side-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--clr-black);
    opacity: 0.98;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

/* Links inside the side nav */
.side-nav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    /* user-select: none; */
    font-size: 1.2rem;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    color: var(--clr-primary);
}

/* Close button for the side nav */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 46px;
    margin-left: 50px;
    color: white;
    cursor: pointer;
}

/* Style for page content */
.main-content {
    padding: 20px;
}

/* Transition for the open side nav */
.open-nav {
    width: 100%;
}