.top-menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 10%);
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.top-menu-side {
}

.top-menu-middle {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    /*border-bottom: 1px solid gray;*/
    padding-bottom: 20px;
}

.top-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 200px;
    font-size: 15px;
    font-family: Seravek;
    color: black;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s;
}

.top-menu-item:hover {
    color: rgb(150, 150, 150);
}

.top-menu-item:hover .top-menu-item-hover-animation{
    opacity: 0.8;
}

.top-menu-item-hover-animation {
    position: absolute;
    color: rgb(40, 40, 40);
    width: 100%;
    height: 0px;
    border: 1px;
    border-style: solid;
    bottom: -21px;
    opacity: 0;
    transition: opacity 0.2s;
    justify-content: center;
}

.scrolled {
    background-color: rgba(255,255,255,0.7); /* Change the background color when scrolled */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  }

.header {
    width: 100vw;
    height: 100px;
    margin: 0px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -15%);
    z-index: 1000;
    transition: background-color 0.5s ease-in-out;
    
}