body {
    margin: 0;
    padding-top: 52px;
    font-family: cursive, sans-serif;
}

div.hem {
    color: black;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #764ba2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

ul li {
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

ul li:last-child {
    border-right: none;
}

ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
}

ul li a.active {
    background-color: rgba(255, 255, 255, 0.25);
    border-bottom: 3px solid pink;
}

ul li a:hover {
    background-color: #764ba2;
    transform: translateY(-2px);
}

h1 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 14px 16px;
    color: white;
    font-size: 24px;
    line-height: 1;
    z-index: 10;
}

ul {
    height: 52px;
    width: 100%;
}

