.main-header {
  padding: 10px;
  margin-bottom: 20px;
  height: 75px;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-content: center;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.menu-item .menu-link {
    font-size: 20px;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.menu-link {
    text-decoration: none;
    color: #d1d1d1;
}

.menu-link:hover{
    color: #8C6EF2;
}

