.top-menu-container{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.menu-item-container{
    display: flex;
    justify-items: center;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 10px;
    padding: 0px 5px;
}

.menu-item a{
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    padding: 10px 10px;
    transition: all .5s ease;
    color: #ddd;
    cursor: pointer;
    text-transform: uppercase;
}

.menu-item a:hover{
    color: white;
}

@media only screen and (max-width: 600px) {
    html{
        font-size: 12px;
    }
    .form-header .form-header-item div{
        width: 30px;
        height: 30px;
    }
    .form-header .form-header-item p{
        font-size: 12px;
    }
    .form-header{
        gap: 12px !important;
    }

    .menu-item a{
        font-size: 9px;
        font-weight: 800;
        display: inline-block;
        padding: 5px 5px;
    }
  }




