<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* font */
@import url('https://fonts.googleapis.com/css2?family=Long+Cang&amp;family=Rock+3D&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&amp;display=swap');

/* === Reset some default styles === */
*{
    padding : 0;
    margin: 0;
}

body {
    background-color:  rgb(225, 225, 225);
}

/* === VARIABLES ===*/
:root{
    --bg--color: rgb(225, 225, 225);
    --primary-color: black;
    --second-color: #196fe0;
    --hover-bg-color: #efefef;
    --shadow-1: 0px 2px 10px rgb(0, 0, 0, 0.3);
    --shadow-2: 0px 2px 10px rgba(26, 112, 224,0.4);
}

/* === Reusable CSS ===*/
a{
    text-decoration: none;
}

ul{
    list-style-type: none;
}

/* === Navigation Bar === */
.nav{
    display: flex;
    align-items: center;
    padding-inline: 3vw;
    height: 50px;
    background-color: var(--bg--color);
}

/* Logo */
.logo{
    height: 100%;
    font-size: 40px;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    margin-right: auto;
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

.logo span{
    padding: 0 10px;
    font-size: 20px;
    /* font-family: "Long Cang", cursive;
    font-weight: 400;
    font-style: normal; */
}

.nav-main-menu{
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
}

.hideOnMobile{
    margin-top:30px;
    margin-inline: 5px;
    transition: .3s;
    justify-content: flex-end;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
    align-items: center;
    color: black;
    font-size: 20px;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
} 

.hideOnMobile:hover{
    color: var(--text-color, #6F8FAF);
}

.hideOnMobile span{
    margin-right: 5px;
}

/* menu DropDown*/
.fa-chevron-down {
    font-size: 15px; 
    transition: .3s;
}

.dropdown:hover .fa-chevron-down{
    transform : rotate(180deg);
}

.dropdwon{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position:absolute;
    background-color: rgba(255,255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    z-index: 1000;
}

.dropdown-content a{
    font-size: 20px;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
}

.dropdown-content a:hover{
    color: var(--text-color, #6F8FAF);
}

.dropdown:hover .dropdown-content {
    display: block;
    color: var(--text-color, #6F8FAF);
}

.sidebar{
    position: fixed;
    top: 0;
    right:0;
    row-gap: 20px;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color:  rgba(255,255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    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; 
    z-index: 2000;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    /* margin: auto; */
    /* text-align: center; */
    width:100%;
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    color: black;
    font-size: 25px;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
    align-items: center;
}

.sidebar span{
    margin-right: 5px;
}

.sidebar a:hover{
    color: var(--text-color, #6F8FAF)
}

.dropdown-submenu .fa-chevron-down {
    font-size: 15px; 
    transition: .3s;
}

#submenu{
    margin-top: 0;
    margin-left: 10px;
    /* background-color:  rgba(255,255, 255, 0.2);
    backdrop-filter: blur(20px); */
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    display: none;
}

#dropdown-submenu:hover .fa-chevron-down{
    transform : rotate(180deg);
}
#dropdown-submenu:hover #submenu{
    display: block;
} 

.text {
    position: absolute;
    top:10%;
    left:10%;
    text-align: start;
    padding:0px;
    white-space: nowrap;
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
    z-index: 1000;
}

.text .title{
    font-size: 50px;
    margin-top:30px;
}

.text .content{
    font-size: 25px;
}

.menubutton{
    display: none;
}

@media(max-width:1600px){
    .container{
        width: 100%;
    }
}

@media(max-width: 800px){
    .logo {
        padding: 0 10px;
    }
    .hideOnMobile{
        display: none;
    }
    .dropdown{
        display: none;
    }
    .menubutton{
        position: absolute;
        display: block;
        right: 0px;
    }
    .dropdown-content{
        display:none;
    }
    .text {
        left:10%;
    }
    .text .title{font-size: 20px;}
    .text .content{font-size: 10px;}
}

@media(max-width: 434px){
    .logo{
        font-size: 25px;
    }
    .logo span{
        padding: 0 5px;
        font-size: 15px;
    }
    .sidebar{
        width: 100%;
        height: 100%;
    }
    .sidebar a{
        font-size: 30px;
    }
}</pre></body></html>