.syne-uniquifier {
    font-family: "Syne", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 60px;
}
.inter-uniquifier {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;  
    /*background-color:#feefc3;;*/
    line-height: 1.6;
    color: black;
}
#navbar {
	/*border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC; */
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background: #FFFF;
    border-bottom: 0.5px solid #ebe5d8;
}

#navbar a {
	text-decoration: none;
	font-size: 13px;
	color: #aaa;
	width: 130px;
	text-align: center;
	padding: 10px;
	display: block;
    text-decoration: none;
    letter-spacing: 0.03em;
    margin-left: 24px;
    padding: 0;
    width: auto;
    display: inline;
}

#navbar a:hover {
	border-bottom: 2px solid white;
	color: #555;;
}

#navbar a.active { 
    color: #555; 
}

@media (max-width: 767px) {
    #navbar {
        padding: 0 15px;
        height: auto;
        min-height: 60px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #navbar a {
        margin-left: 0;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    #navbar {
        padding: 0 20px;
    }
}