

header {
    background-color:#030e27;
    padding: 8px 16px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  width: 70%;
  margin: 0 auto;
}

.logo {
    color: white;
    font-size: 2rem;
  padding-top: 12px;
  text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
  margin: 0px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
}
.nav-links a:hover{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-decoration: underline;
    color: #fff;
}

.button_menu {
  background-color: #5659f0;
  border: 2px solid #5659f0;
  padding: 16px;
  border-radius: 8px;
  color: #210d3d;
  
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

@media (max-width: 1200px) {
  
    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        background-color: #000;
        padding: 32px;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
  
    }

    .hamburger {
        display: none;
      z-index: 999999;
    }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

    .nav-links.active {
        display: flex;
    }
}
.dnd-section .dnd-column {padding: 0px;}!important