.contact-section {
  padding: 0 50px;
}

.contact {
  width: 100%;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

.content h2 {
  font-size: 70px;
  font-family: var(--font);
  margin-bottom: 35px;
}

.content p {
  font-family: var(--font);
  max-width: 530px;
  line-height: 28px;
  font-size: 20px;
}

.or {
  text-align: center;
  opacity: 0.5;
}

.button-container {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 600px;
}

.button {
  border-radius: 100px;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.primary {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  background-color: rgb(20, 25, 0);
}

.primary:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0px var(--accent), 0 0 10px var(--accent), 0 0 1px var(--accent);
}

.secondary {
  background-color: rgb(13, 13, 13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.secondary:hover {
  border-color: #fff;
  box-shadow: 0 0 0px #131313, 0 0 10px #131313, 0 0 1px #131313;
}

@media only screen and (max-width: 1000px) {
  .contact {
    gap: 60px;
    flex-direction: column;
  }
  .content p {
    max-width: 100%;
  }

  .button-container {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 0 15px;
  }
  .content h2 {
    font-size: 50px;
  }
  .content p {
    line-height: 24px;
    font-size: 18px;
  }
  .button-container {
    flex-direction: column;
  }
}
