body{
    overflow-x: hidden !important;
    margin: 0;
}

/* Font */
.cormorantInfant{
    font-family: "Cormorant Infant", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    hyphens: auto;
}


.threeColumn {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
}


/* Fade In */
    .fadeIn {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fadeIn.appear {
        opacity: 1;
        transform: translateY(0);
    }

/* hr */
.centered-hr {
    width: 35%;
    margin: -2% 0% 5% 0%;
    border: none;
    border-top: 1px solid #000;
}



/* NavBar */
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0px;
    font-size: 2rem;
    font-weight: 500;
    z-index: 1000;
}

.navBar_animation {
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

/* Show the navbar when needed */
.sticky-navbar.show {
    transform: translateY(0);
}

.navbar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap; 
}

/* Positions the menu (language selector) on the far right */
.navbar-menu {
    position: absolute;
    right: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Styles for the language selector */
select {
    all: unset;
    appearance: none;
    font-size: clamp(20px, 1vw, 25px);
    transition: all .2s ease-in-out;
    cursor: pointer;
    color: black;
}