

/* navigation bar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: white;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-header {
    background: #ffffff;
    padding: 10px 20px;

}


nav {
    background: #fd214a;
    color: white;
    padding: 18px 10px;
    display: flex;
    justify-content: space-around;
    transition: max-height 0.3s ease;
    z-index: 1000;
    font-weight: bolder;
}

.menu-item-wrapper {
    position: relative;
    display: inline-block;
}

.menu-item {
    cursor: pointer;
    padding: 10px 20px;    
}
nav .menu-item a {
    font-size: 1rem;    
}

.menu-item-wrapper a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: block;
    font-size: 0.8rem;
}

/* navigation bar */



