:root[data-theme="light"] {
    --text: #040316;
    --background: #fbfbfe;
    --primary: #f7951d;
    --secondary: #ededed;
    --accent: #e1a82d;
  }
  :root[data-theme="dark"] {
    --text: #eae9fc;
    --background: #010104;
    --primary: #e28008;
    --secondary: #0D0D11;
    --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;
}

.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;
}

.personInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px 200px;
    background-color: var(--secondary);
    padding: 10px;
    border-radius: 20px;
}

.personInfo h1 {
    font-size: 4rem;
    margin: 0;
    padding: 0;
    color: var(--text);
    text-align: center;
    background: var(--primary);
    padding: 0px 20px;
    border-radius: 20px;
}

.content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    padding: 20px;
    color: var(--text);
}

.content img {
    max-width: 100%;
    min-width: 250px;
    border-radius: 20px;
}

.content p {
    font-size: 1rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    margin-left: 20px;
} 

.content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 20px;
    padding: 0;
}

#executive {
    justify-content: space-between;
} 

.person {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--secondary);
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.person h2 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    color: var(--text);
    text-align: center;
}

.person:hover {
    background-color: var(--primary);
    transition: 0.3s;
    cursor: pointer;
}

@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;
}