:root {
    font-size: 1rem;
    font-family: sans-serif;
    
    --text-primary: rgb(255, 255, 255);
    --text-secondary: rgb(150, 150, 150);
    --text-accent: rgb(255, 8, 17);

    --bg-primary: rgb(19, 22, 27);

    --bg-transperent: rgba(0, 0, 0, 0.5);;

    --icon-primary: rgb(245, 245, 245);

    --link-color: rgb(23, 147, 209);
}
body {
    margin: 0;
    background-color: rgb(19, 22, 27);
}
.navbar {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    height: 100%;
    width: 80px;
    position: fixed;

    background-color: var(--bg-transperent);
    backdrop-filter: blur(10px);
    transition: 0.5s ease;
    z-index: 1;
}
.navbar-ul {
    padding: 0;
    margin-top: -150%;
    margin-bottom: -150%;

    height: 4rem;
    width: 4rem;

    border-radius: 25%;
    transition: 0.4s ease-out;
}
.navbar-ul:hover {
    background: rgba(162, 161, 168, 0.2);
}
.textbox-d {
    display: none;
}
.navbar-ul:hover .textbox-d{
    position: absolute;
    display: inline-block;
    padding: 7px;
    border-radius: 10px;
    background: var(--bg-transperent);
    backdrop-filter: blur(2px);
    margin-left: 95%;
    margin-top: -41%;
}

.navbar-svg {
    display: block;
    margin: auto;
    margin-top: 21%;
    width: 38;
    height: 36;

    transition: ease-in;
}
#Home {
    fill: var(--icon-primary);
}
#Project {
    fill: var(--link-color);
}
#Fun {
    fill: var(--icon-primary);
}
#About {
    fill: var(--icon-primary);
}
.navbar-a {
    text-decoration: none;
    color: var(--text-primary);
}



.content {
    height: 100%;
    width: calc(100% - 80px);
    margin-left: 80px;

    display: grid;
    align-items: center;
    justify-items: center;
}
.content p {
    font-size: 1.5rem;
    color: var(--text-primary);
}
.slider-container {
    display: grid;
    align-items: center;
    justify-items: center;
    position: relative;
    max-width: 1000px;
    margin: 1%;
    padding: 20px;
    background: var(--bg-transperent);
    margin-bottom: 5%;
    border: 5px solid;
    border-image: linear-gradient(to left, var(--text-accent), var(--link-color)); /* Define the gradient */
    border-image-slice: 1; /* Ensure the gradient is evenly distributed */
}  
.slider {
    display: flex;
    overflow: hidden;
} 
.slide {
    flex: 0 0 100%;
}
img {
    width: 100%;
    min-height: 70px;
    object-fit: cover;
    transition: 1s ease-in-out;
}
img:hover {
    transform: scale(1.2);
}
.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    background-color: var(--bg-transperent);
    color: var(--text-primary);
    border: none;
    cursor: pointer;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.FakeElement {
    width: 100%;
    height: 80px;
}
@media (max-width: 768px) {
    .navbar {
        height: 80px;
        width: 100%;
        flex-direction: row;
        bottom: 0;
    }
    .img1 {
        width: 100%;
        margin-left: 0px;
    }
    .content {
        width: 100%;
        height: calc(100% - 80px);
        margin-bottom: 80px;
        margin-left: 0px;
    }
    .navbar-li {
        list-style: none;
    }
}


.blur {
    position: absolute;
    width: calc(100% - 80px);
    height: 100%;
    top: 0;
    right: 0;
    backdrop-filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}