:root{
    --header-bg-color: rgb(29, 29, 29);

    --slideMenu-bg-color: rgb(38, 38, 38);
    --slideMenu-li-color: rgb(54, 54, 54);

    --body-bg-color: rgb(24,24,24);
    --body-bg-color-gradient: linear-gradient(90deg, rgba(24,24,24,1) 0%, rgb(35, 35, 35) 50%, rgba(24,24,24,1) 100%);
    --body-bg-color2: rgba(0, 0, 0, 0.093);

    --orange: rgb(233, 124, 0);
}
*{
    padding: 0;
    margin: 0;

    font-family: 'Poppins', sans-serif;
    font-family: 'Sora', sans-serif;
    color: white;
}
html{
    font-size: 25px;
}
h1{
    text-align: center;
}
h2{
    font-size: 25px;
}
h3{
    font-size: 20px;
}
p{
    font-size: 18px;
}
a{
    text-decoration: none;
}
header{
    background-color: var(--header-bg-color);
    box-shadow: 0px 10px 18px 5px rgba(0,0,0,0.2);

    display: flex;
    position: fixed;
    width: 100%;
    height: 3rem;
    justify-content: space-between;
    align-items: center;

    z-index: 999;

}
header button{
    background-color: transparent;
    border: 0;
    padding: 0 15px 0 15px; 
}
.header-logo{
    height: 100%;
}
.header-logo a{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-logo a img{
    height: 50%;
    margin-right: 5px;
}
.header-logo-text{
    font-size: 35px;
}
.navbar-list{
    position: fixed;
    left: 0;
    top: 3rem;

    list-style: none;

    /* background-color: var(--slideMenu-bg-color); */
    background-color: var(--header-bg-color);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;

    width: 60%;
    max-width: 500px;
    
    transform: translateX(-105%);
    transition: 0.5s;

    z-index: 998;
}
.navbar-list li{
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 2rem;
}
.navbar-list a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.navbar-li-text{
    margin-left: 15px;
    font-weight: 300;
}
.navbar-list[isActive = "true"]{
    transform: translateX(0%);
    transition: 0.5s;
}
body{
    background: var(--body-bg-color-gradient);

    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 100%;
    height: 100%;
    
    padding-top: 3rem;
    padding-bottom: 80px;

}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 5;
  font-size: 35px !important;
}
footer{
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.103);
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}