body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, sans-serif;
    font-weight: 500;
    color: #fff;
}

.content-all {
   background-color: #333;
}

header {
    background-color: #333;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    list-style: none;
    font-size: 18px;
    cursor: pointer;
}

header ul li:hover {
    color:#00fda8
}

header img {
    width: 200px;
    height: 70px;
}

#contate {
    padding: 5px;
    border-radius: 8%;
    border: 2px solid #fff;
    background-color: #00fda8;
    color: #333;
}

#contate:hover {
    border: 2px solid #333;
    background-color: #387762;
    color: #fff;
    cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  margin-right: 8px;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: #333;
    padding: 20px;
    transition: 0.3s;
    font-size: 22px;

}

@media (max-width: 768px) {
    header ul {
        display: none;
    }

    header {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

}

