:root[data-theme="light"] {
    --text: #040316;
    --background: #fbfbfe;
    --primary: #f7951d;
    --secondary: #582d0e;
    --accent: #e1a82d;
  }
  :root[data-theme="dark"] {
    --text: #eae9fc;
    --background: #010104;
    --primary: #e28008;
    --secondary: #582d0e;
    --accent: #d2991e;
  }
  

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

.image {
    display: block;
    max-width: 100%;
}

body {
    min-height: 100dvh;
    background-color: var(--background);
    background-size: cover;
    background-position: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    width: 100vw;
}

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

nav {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 9;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--text);
    transition: 0.3s;
}

nav a:hover {
    background-color: var(--accent);
    transition: 0.3s;
}

/* nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #000;
    transition: width 0.3s ease-in-out;
}

nav a:hover::after {
    width: 100%;
} */

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: ease;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, ;
}

.menu-button {
    display: none;
}

h1 {
    font-size: 60px;
    color: var(--text);
}

p {
    font-size: 20px;
    color: var(--text);
}

#container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    color: var(--text);
    min-width: 100vw;
    background-image: url("images/lssdphoto.png");
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

.heading {
    font-size: 120px;
    margin: 20px;
    animation: show 1s ease-in-out;
    color: #eae9fc;
}

#outline {
    animation: showup 2s ease-in-out;
    color: #eae9fc;
}

#arrow {
    font-size: 50px;
    margin: 20px;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    bottom: 0;
    color: var(--text);
    animation: ease-in-out 2s infinite arrow;
    /* -webkit-text-stroke: #060405 2px; */
}

#arrow:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

@keyframes arrow {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }

}


@media(max-width: 550px) {
    .sidebar {
        width: 100%;
    }

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
        transition: ease;
    }
}

.hidden {
    opacity: 0;
    transition: ease-in-out 1s;
}

.show {
    opacity: 1;
}

.floating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    margin: 50px 0;
}

.floating h1 {
    margin: 20px;
    color: var(--text);
}

#text {
    color: var(--text);
    max-width: 1000px;
    text-align: center;
    line-height: 1.5;
}

#text p {
    font-size: 30px;
}

#nabor {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
    background-color: var(--secondary);
}

#nabor h1 {
    color: #eae9fc;
}

@keyframes show {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes showup {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }

}
